1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#!/usr/bin/make -f
package = zip
docdir = debian/tmp/usr/share/doc/$(package)
build:
$(checkdir)
$(MAKE) -f unix/Makefile LOCAL_ZIP="-g -Wall" generic_gcc
touch build
clean:
$(checkdir)
rm -f build
-$(MAKE) -f unix/Makefile clean
rm -rf debian/tmp debian/files* debian/*~ debian/*.bak debian/substvars
binary-indep: checkroot build
$(checkdir)
binary-arch: checkroot build
-rm -rf debian/tmp
install -d debian/tmp/DEBIAN $(docdir)
cd debian/tmp && install -d usr/bin usr/man/man1
$(MAKE) -f unix/Makefile install prefix=`pwd`/debian/tmp/usr
cd debian && install -m 755 prerm postinst tmp/DEBIAN
chmod 755 debian/tmp/usr/bin/*
cat debian/copyright.in LICENSE > $(docdir)/copyright
cp debian/changelog $(docdir)/changelog.Debian
cp -p CHANGES TODO WHATSNEW $(docdir)
cd $(docdir) && gzip -9 changelog.Debian CHANGES
ln -s CHANGES.gz $(docdir)/changelog.gz
# Superfluous entry (remove the binary a bit later.)
cd debian/tmp/usr/man/man1 && sed -e 's/zipcloak, //' < zip.1 > zip.1n
cd debian/tmp/usr/man/man1 && rm -f zip.1
cd debian/tmp/usr/man/man1 && mv zip.1n zip.1
# No encryption, so this binary is useless.
rm debian/tmp/usr/bin/zipcloak
gzip -r9 debian/tmp/usr/man
cd debian/tmp && mv usr/man usr/share
dpkg-shlibdeps zip
dpkg-gencontrol -isp
cd debian/tmp && md5sum `find * -type f ! -regex "DEBIAN/.*"` >DEBIAN/md5sums
chown -R root.root debian/tmp
chmod -R go=rX debian/tmp
dpkg --build debian/tmp ..
define checkdir
test -f $(package).c -a -f debian/rules
endef
binary: binary-indep binary-arch
checkroot:
$(checkdir)
test root = "`whoami`"
.PHONY: binary binary-arch binary-indep clean checkroot
|