X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=debian%2Frules;h=2dc0905fa72535aeccfaef465d11f287901e9371;hb=973304a5e8d29b879f6ddc0556e18d46ffdd205d;hp=6b0215789851b66c332bc6e31b4439cefd7a8fdf;hpb=979416ca87e2c2c13870d48d9d42e14137186fa9;p=debian%2Fefibootmgr diff --git a/debian/rules b/debian/rules index 6b02157..2dc0905 100755 --- a/debian/rules +++ b/debian/rules @@ -1,59 +1,16 @@ #!/usr/bin/make -f +# rules file for the efibootmgr package, requires debhelper / dh +# copyright 2012 by Bdale Garbee, GPLv2 or later -export DH_COMPAT=3 +export DH_VERBOSE=1 -configure: configure-stamp -configure-stamp: - dh_testdir +%: + dh $@ - touch configure-stamp +override_dh_installman: + (cd src/man/man8 ; docbook-to-man efibootmgr.8.docbook > efibootmgr.8) + dh_installman -build: configure-stamp build-stamp -build-stamp: - dh_testdir - $(MAKE) - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - -$(MAKE) clean +override_dh_clean: + rm -f src/man/man8/efibootmgr.8 dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - cp src/efibootmgr/efibootmgr debian/efibootmgr/bin/efibootmgr - chown root:root debian/efibootmgr/bin/efibootmgr - chmod 0755 debian/efibootmgr/bin/efibootmgr - -# Build architecture-independent files here. -binary-indep: build install - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installdocs - dh_installexamples - dh_installmenu - dh_installcron - dh_installman src/man/man8/efibootmgr.8 - dh_installinfo - dh_installchangelogs doc/ChangeLog - dh_link - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure