X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=debian%2Frules;h=36fc2585f3705a95d007147ce39bbce169438a64;hb=8bbe4b4c2c9537cb04296aedf7954ba707575b3c;hp=b70650547c66f271ad44ec3487db76787adc874d;hpb=08262804615de4989aae0ab59eacb103b23c39fb;p=pkg%2Fmmv.git diff --git a/debian/rules b/debian/rules index b706505..36fc258 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,5 @@ #! /usr/bin/make -f -INSTALL_PROGRAM=install CC = gcc LDFLAGS = CFLAGS = -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 @@ -13,9 +12,7 @@ else endif ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) - INSTALL_PROGRAM += -s LDFLAGS += -s - STRIP = true endif ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) @@ -35,25 +32,23 @@ dir = `pwd` build: # Builds the binary package. - $(checkdir) + dh_testdir $(MAKE) CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" touch build clean: # Undoes the effect of `make -f debian/rules build'. - $(checkdir) - [ ! -f Makefile ] || $(MAKE) clean - -rm -f debian/files* debian/substvars* debian/*~ core */core *~ - rm -rf debian/tmp - -rm build + dh_testdir + dh_auto_clean + dh_clean build debian/substvars binary: binary-arch binary-indep binary-indep: - $(checkdir) + dh_testdir binary-arch: build - $(checkdir) + dh_testdir test -f build || $(MAKE) -f debian/rules build # Makes a binary package. /bin/rm -rf debian/tmp @@ -63,10 +58,9 @@ binary-arch: build 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_PROGRAM) -g root -o root -m 755 mmv debian/tmp/usr/bin - test "$(STRIP)" != true || strip \ - --remove-section=.comment --remove-section=.note \ - debian/tmp/usr/bin/mmv + install -d -g root -m 755 -o root debian/tmp/usr/share/lintian/overrides + install -g root -o root -m 755 mmv debian/tmp/usr/bin + 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;\ @@ -78,21 +72,14 @@ binary-arch: build 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) - install -g root -m 644 -o root READ.ME \ - debian/tmp/usr/share/doc/$(p) - install -g root -m 644 -o root debian/changelog \ - debian/tmp/usr/share/doc/$(p)/changelog.Debian - gzip -f9 debian/tmp/usr/share/doc/$(p)/* - install -g root -m 644 -o root debian/copyright \ - debian/tmp/usr/share/doc/$(p) + dh_installdocs + dh_installchangelogs + install -g root -m 644 -o root debian/lintian-overrides \ + debian/tmp/usr/share/lintian/overrides/mmv 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 - dpkg-gencontrol -isp + dh_gencontrol cd debian/tmp && find * -type f ! -regex '^DEBIAN/.*' -print0 | \ xargs -r0 md5sum > DEBIAN/md5sums dpkg --build debian/tmp && dpkg-name -o -s .. debian/tmp.deb - -define checkdir - test -f mmv.1 -endef