X-Git-Url: https://git.deb.at/w?p=pkg%2Fmmv.git;a=blobdiff_plain;f=debian%2Frules;h=8f3c79753ecfcc4ead9e23583d24b5f79a68cc3b;hp=ed99ae4dd293f37a4098d64fcb82f52cb4807fbd;hb=850b2594a7afb220cbd19a6cb6fd8c51b1a1a646;hpb=8a64e5cf410b75430a71b24b2f11798ec0095bad diff --git a/debian/rules b/debian/rules index ed99ae4..8f3c797 100755 --- a/debian/rules +++ b/debian/rules @@ -1,36 +1,12 @@ #! /usr/bin/make -f -CC = gcc -LDFLAGS = -CFLAGS = -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk - -ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif - -ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) - LDFLAGS += -s -endif - -ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) - NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) - MAKEFLAGS += -j$(NUMJOBS) -endif - - -# The package -p = mmv -# The version -v = $(shell dpkg-parsechangelog | sed -n 's/^Version: //p') -# The architecture -a = $(shell dpkg --print-architecture) - -dir = `pwd` - -build: +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: # Builds the binary package. dh_testdir $(MAKE) CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" @@ -49,34 +25,17 @@ binary-indep: binary-arch: build dh_testdir - test -f build || $(MAKE) -f debian/rules build # Makes a binary package. - /bin/rm -rf debian/tmp - test -f stamp-build || $(MAKE) -f debian/rules build - install -d -g root -m 755 -o root debian/tmp - chmod g-s debian/tmp - install -d -g root -m 755 -o root debian/tmp/DEBIAN - install -d -g root -m 755 -o root debian/tmp/usr/bin - install -d -g root -m 755 -o root debian/tmp/usr/share/man/man1 - install -g root -o root -m 755 mmv debian/tmp/usr/bin + dh_installdirs + dh_auto_install dh_strip - install -g root -o root -m 644 mmv.1 debian/tmp/usr/share/man/man1 - gzip -9f debian/tmp/usr/share/man/man1/mmv.1 - (cd debian/tmp/usr/bin;\ - ln -s mmv mcp; \ - ln -s mmv mad; \ - ln -s mmv mln;) - (cd debian/tmp/usr/share/man/man1;\ - ln -s mmv.1.gz mcp.1.gz; \ - ln -s mmv.1.gz mad.1.gz; \ - ln -s mmv.1.gz mln.1.gz;) - install -d -g root -m 755 -o root debian/tmp/usr/share/doc/$(p) + dh_link dh_installdocs dh_installchangelogs + dh_compress dh_lintian - chmod -R g-sw debian/tmp/usr/share/doc/$(p) - chown -R root.root debian/tmp/usr/share/doc/$(p) - dpkg-shlibdeps debian/tmp/usr/bin/mmv + dh_fixperms + dh_shlibdeps dh_gencontrol dh_md5sums - dpkg --build debian/tmp && dpkg-name -o -s .. debian/tmp.deb + dh_builddeb