diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 11 |
3 files changed, 4 insertions, 10 deletions
diff --git a/debian/changelog b/debian/changelog index 84ac8fd..ee8cca1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ wavemon (0.7.3-1) unstable; urgency=low - Update to S-V to 3.9.2 - Bump Debhelper to v7 - Switch to dpkg-source 3.0 (quilt) format + - Switch to dh-style debian/rules - Remove unused dependencies - Update package description (closes: #590531) - Add watchfile diff --git a/debian/control b/debian/control index af9506f..5635959 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: wavemon Section: net Priority: extra Maintainer: Jonathan McCrohan <jmccrohan@gmail.com> -Build-Depends: cdbs, quilt, patchutils, libncurses5-dev, +Build-Depends: autotools-dev, patchutils, libncurses5-dev, debhelper (>= 7.0.50~), linux-libc-dev Standards-Version: 3.9.2 Homepage: http://eden-feed.erg.abdn.ac.uk/wavemon diff --git a/debian/rules b/debian/rules index 639dbe1..dcf6189 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,4 @@ #!/usr/bin/make -f -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/autotools.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk - -DEB_MAKE_INSTALL_TARGET=install DESTDIR=`pwd`/debian/wavemon - -clean:: - rm -f *.o wavemon - rm -f config.status config.log defs.h config.cache Makefile +%: + dh $@ --with autotools_dev |