Minimizing rules file.

This commit is contained in:
Daniel Baumann 2010-01-19 22:12:36 +01:00
parent 06e36c3b52
commit 44a580e8f9
4 changed files with 8 additions and 39 deletions

2
debian/control vendored
View File

@ -3,7 +3,7 @@ Section: misc
Priority: optional
Maintainer: Debian Live <debian-live@lists.debian.org>
Uploaders: Daniel Baumann <daniel@debian.org>
Build-Depends: debhelper (>= 7)
Build-Depends: debhelper (>= 7.0.50~)
Build-Depends-Indep: gettext
Standards-Version: 3.8.3
Homepage: http://debian-live.alioth.debian.org/

45
debian/rules vendored
View File

@ -1,27 +1,17 @@
#!/usr/bin/make -f
clean:
dh_testdir
dh_testroot
%:
dh ${@}
override_dh_auto_clean:
$(MAKE) -C po clean
dh_clean
build:
$(MAKE) test
override_dh_auto_build:
$(MAKE) -C po update-po
install: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs
override_dh_auto_install:
dh_auto_install
# Installing package
$(MAKE) install DESTDIR=$(CURDIR)/debian/live-helper
# Installing message catalogs
$(MAKE) -C po install DESTDIR=$(CURDIR)/debian/live-helper
install -D -m 0644 debian/live-helper.default debian/live-helper/etc/default/live-helper_autobuild
@ -35,27 +25,6 @@ install: build
rm -f debian/live-helper/usr/share/doc/live-helper/ChangeLog
mv debian/live-helper/usr/share/doc/live-helper/ChangeLog.live-package debian/live-helper/usr/share/doc/live-helper/changelog.live-package
# Installing bug control
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
binary: binary-indep
binary-arch:
binary-indep: install
dh_testdir
dh_testroot
override_dh_installchangelogs:
dh_installchangelogs docs/ChangeLog
dh_installdocs
dh_installlogrotate
dh_installcron
dh_installman
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
.PHONY: clean build install binary binary-arch binary-indep