2007-09-23 08:04:20 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
|
2008-08-10 15:39:06 +00:00
|
|
|
$(MAKE) -C po clean
|
|
|
|
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_clean
|
|
|
|
|
2007-12-22 07:04:52 -01:00
|
|
|
build:
|
2008-08-25 12:47:41 +00:00
|
|
|
$(MAKE) test
|
2008-08-10 15:39:06 +00:00
|
|
|
$(MAKE) -C po update-po
|
2007-12-22 07:04:52 -01:00
|
|
|
|
2008-08-10 15:39:06 +00:00
|
|
|
install: build
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2009-10-22 04:34:51 +00:00
|
|
|
dh_prep
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_installdirs
|
|
|
|
|
|
|
|
# Installing package
|
2007-09-23 08:04:46 +00:00
|
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/live-helper
|
|
|
|
|
2008-08-10 15:39:06 +00:00
|
|
|
# Installing message catalogs
|
|
|
|
$(MAKE) -C po install DESTDIR=$(CURDIR)/debian/live-helper
|
|
|
|
|
2009-02-08 10:21:31 -01:00
|
|
|
install -D -m 0644 debian/live-helper.default debian/live-helper/etc/default/live-helper_autobuild
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-09-23 08:05:16 +00:00
|
|
|
# Preparing alternatives
|
|
|
|
mv debian/live-helper/usr/share/live-helper/includes debian/live-helper/usr/share/live-helper/includes.debian
|
|
|
|
mv debian/live-helper/usr/share/live-helper/templates debian/live-helper/usr/share/live-helper/templates.debian
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Removing double files
|
|
|
|
rm -f debian/live-helper/usr/share/doc/live-helper/COPYING
|
|
|
|
rm -f debian/live-helper/usr/share/doc/live-helper/ChangeLog
|
2007-09-23 08:05:09 +00:00
|
|
|
mv debian/live-helper/usr/share/doc/live-helper/ChangeLog.live-package debian/live-helper/usr/share/doc/live-helper/changelog.live-package
|
2007-09-23 08:04:20 +00:00
|
|
|
|
2007-11-11 09:09:33 -01:00
|
|
|
# Installing bug control
|
2009-09-11 13:46:16 +00:00
|
|
|
install -D -m 0644 debian/bug/live-helper.presubj debian/live-helper/usr/share/bug/live-helper/presubj
|
|
|
|
install -D -m 0755 debian/bug/live-helper.script debian/live-helper/usr/share/bug/live-helper/script
|
2007-11-11 09:09:33 -01:00
|
|
|
|
2008-03-06 13:56:48 -01:00
|
|
|
binary: binary-indep
|
2007-12-22 07:04:52 -01:00
|
|
|
|
2008-03-06 13:56:48 -01:00
|
|
|
binary-arch:
|
2007-09-23 08:04:20 +00:00
|
|
|
|
2008-03-06 13:56:48 -01:00
|
|
|
binary-indep: install
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2007-09-23 08:05:09 +00:00
|
|
|
dh_installchangelogs docs/ChangeLog
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_installdocs
|
2007-09-23 08:05:10 +00:00
|
|
|
dh_installlogrotate
|
2007-09-23 08:04:51 +00:00
|
|
|
dh_installcron
|
2007-09-23 08:04:48 +00:00
|
|
|
dh_installman
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
|
|
|
dh_installdeb
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
2009-02-08 08:58:30 -01:00
|
|
|
.PHONY: clean build install binary binary-arch binary-indep
|