X-Git-Url: https://git.deb.at/w?p=pkg%2Fmmv.git;a=blobdiff_plain;f=debian%2Frules;h=684c9f87d70482c36858d1ed99345b5fe2921a77;hp=79f430eb8124f48bd3e885fa251cbc6025f914ac;hb=6fa5fb97a6183a87d39929db8ba827069453068d;hpb=f75c79c59805dd98f7238188d7a63bb1d8d69bb8 diff --git a/debian/rules b/debian/rules index 79f430e..684c9f8 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))) @@ -43,9 +40,7 @@ clean: # Undoes the effect of `make -f debian/rules build'. dh_testdir dh_auto_clean - -rm -f debian/files* debian/substvars* debian/*~ core */core *~ - rm -rf debian/tmp - -rm build + dh_clean build debian/substvars binary: binary-arch binary-indep @@ -63,11 +58,8 @@ 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 -d -g root -m 755 -o root debian/tmp/usr/share/lintian/overrides - $(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 -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;\ @@ -79,19 +71,13 @@ 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) - install -g root -m 644 -o root debian/lintian-overrides \ - debian/tmp/usr/share/lintian/overrides/mmv + 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 - dpkg-gencontrol -isp - 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 + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb