2007-09-23 08:04:20 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
upstream:
|
2007-12-22 07:04:52 -01:00
|
|
|
cd .. && git clone git://git.debian.org/git/users/daniel/live-helper.git
|
2007-09-23 08:05:21 +00:00
|
|
|
rm -rf ../live-helper/.git
|
2007-09-23 08:04:20 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
|
|
|
|
dh_clean
|
|
|
|
|
2007-12-22 07:04:52 -01:00
|
|
|
build:
|
|
|
|
|
2008-03-06 13:56:48 -01:00
|
|
|
install:
|
2007-09-23 08:04:20 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
|
|
|
# Installing package
|
2007-09-23 08:04:46 +00:00
|
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/live-helper
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
install -D -m 0644 debian/default debian/live-helper/etc/default/live-helper
|
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
|
2008-03-06 12:59:02 -01:00
|
|
|
install -D -m 0644 debian/bug/presubj debian/live-helper/usr/share/bug/live-helper
|
2007-11-11 09:09:33 -01:00
|
|
|
install -D -m 0755 debian/bug/script debian/live-helper/usr/share/bug/live-helper
|
|
|
|
|
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
|
|
|
|
dh_install
|
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
|
|
|
|
|
2007-12-22 07:04:52 -01:00
|
|
|
.PHONY: upstream clean build install binary binary-arch binary-indep
|