X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=debian%2Frules;h=fdfc5c45dc885f3fbe8fba56625d257af82e4802;hb=02d823beb865daf9cf0cc00e06c3921742f232ce;hp=c6b78b5bd947541366c616759328efe09290ce57;hpb=5ae19c052d638b9e8233ea34e485dfa44af41d68;p=pkg%2Fmmv.git diff --git a/debian/rules b/debian/rules index c6b78b5..fdfc5c4 100755 --- a/debian/rules +++ b/debian/rules @@ -1,71 +1,38 @@ #! /usr/bin/make -f -CC = gcc -LDFLAGS = -s - -# The package -p = mmv -# The version -v = $(shell dpkg-parsechangelog | sed -n 's/^Version: //p') -# The architecture -a = $(shell dpkg --print-architecture) - -dir = `pwd` +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk build: # Builds the binary package. - $(checkdir) - make CC="$(CC)" LDFLAGS="$(LDFLAGS)" + dh_testdir + $(MAKE) CC="$(CC)" LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" touch build clean: # Undoes the effect of `make -f debian/rules build'. - $(checkdir) - make clean - /bin/rm -f debian/files* debian/substvars* - /bin/rm -rf debian/tmp 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) - test -f build || make -f debian/rules build + dh_testdir # 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/man/man1 - install -g root -o root -m 755 -s mmv debian/tmp/usr/bin - install -g root -o root -m 644 mmv.1 debian/tmp/usr/man/man1 - gzip -9f debian/tmp/usr/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/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/doc/$(p) - install -g root -m 644 -o root READ.ME \ - debian/tmp/usr/doc/$(p) - install -g root -m 644 -o root debian/changelog \ - debian/tmp/usr/doc/$(p)/changelog.Debian - gzip -f9 debian/tmp/usr/doc/$(p)/* - install -g root -m 644 -o root debian/copyright \ - debian/tmp/usr/doc/$(p) - chmod -R g-sw debian/tmp/usr/doc/$(p) - chown -R root.root debian/tmp/usr/doc/$(p) - dpkg-shlibdeps debian/tmp/usr/bin/mmv - dpkg-gencontrol - dpkg --build debian/tmp && dpkg-name -o -s .. debian/tmp.deb - -define checkdir - test -f mmv.1 -endef + dh_installdirs + dh_auto_install + dh_strip + dh_link + dh_installdocs + dh_installchangelogs + dh_compress + dh_lintian + dh_fixperms + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb