live-build/debian/rules

56 lines
1.3 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:20 +00:00
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
2007-09-23 08:04:46 +00:00
upstream:
# Needs: subversion
2007-09-23 08:04:49 +00:00
cd .. && svn co svn://svn.debian.org/debian-live/dists/trunk/live-helper || true
find . -type d -name .svn | xargs rm -rf
2007-09-23 08:04:20 +00:00
build:
clean:
dh_testdir
dh_testroot
dh_clean
install: build
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:05:09 +00:00
install -D -m 0644 debian/changelog.live-package debian/live-helper/usr/share/doc/live-helper/changelog.Debian.live-package
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: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
binary-arch: build install
binary-indep: build install
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: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
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install