summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois Marier <francois@debian.org>2012-05-28 15:15:17 +1200
committerFrancois Marier <francois@debian.org>2012-05-28 15:15:17 +1200
commitf86edf3f2d83558f6d004a1488399590c4e6779e (patch)
tree970f137d12c38328f735d555639c8e6160fa5803
parentb5436efee5c112afe53bc56e1f0040f59ecfb1da (diff)
Switch to minimal debian/rules file
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/rules54
2 files changed, 6 insertions, 49 deletions
diff --git a/debian/changelog b/debian/changelog
index 3b5ee6f..35e8569 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
cil (0.07.00-4) unstable; urgency=low
+ * Switch to minimal debian/rules file
* Bump debhelper version to 9
* Bump Standards-Version up to 3.9.3
diff --git a/debian/rules b/debian/rules
index 122387c..4d00de0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,53 +1,9 @@
#!/usr/bin/make -f
-## ----------------------------------------------------------------------------
+# -*- makefile -*-
-## ----------------------------------------------------------------------------
-## uncomment this to turn on verbose mode
+%:
+ dh $@
-# export DH_VERBOSE=1
-
-## ----------------------------------------------------------------------------
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp install-stamp
- [ ! -f Makefile ] || $(MAKE) clean
- rm -f $(CURDIR)/cil.1
- dh_clean
-
-build: build-stamp
-build-stamp:
- dh_testdir
- echo Doing MAN...
+override_dh_auto_build:
+ dh_auto_build
pod2man $(CURDIR)/bin/cil > $(CURDIR)/cil.1
- touch build-stamp
-
-binary:
- dh_testdir
- dh_testroot
- dh_prep
-
- dh_install
- dh_installdirs
- dh_installdocs
- dh_installdebconf
- dh_installman
- dh_installchangelogs Changes
- dh_compress
- dh_fixperms
- dh_installdeb
-
- dh_perl
-
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-binary-arch:
-
-binary: binary-indep binary-arch
-
-.PHONY: clean install binary-indep binary-arch binary
-
-## ----------------------------------------------------------------------------