X-Git-Url: https://git.deb.at/w?p=pkg%2Fmmv.git;a=blobdiff_plain;f=debian%2Frules;h=4c148b5339a25805851cf5369d66f884f4612b45;hp=a92ecf6ae79d2a9eaa42e280eaa472f41395f966;hb=272e6f939a544664c889bca1dcb5faaf34db6801;hpb=b3c938a3cca4233847b268ed46dcdc84c3c83c88 diff --git a/debian/rules b/debian/rules index a92ecf6..4c148b5 100755 --- a/debian/rules +++ b/debian/rules @@ -1,73 +1,30 @@ #! /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: -# Builds the binary package. +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp +build-stamp: dh_testdir - $(MAKE) CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" - touch build + dh_auto_build -- LDFLAGS="$(LDFLAGS)" clean: -# Undoes the effect of `make -f debian/rules build'. dh_testdir dh_auto_clean - dh_clean build debian/substvars + dh_clean binary: binary-arch binary-indep - binary-indep: dh_testdir 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 - dh_install + dh_installdirs + dh_auto_install dh_strip - dh_installman - (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