* debian.rules (debian): update debian revision to 10
[findutils.git] / debian.rules
blobacce7780ccbb85b49259cc9ba1fd73506988817e
1 #! /usr/bin/make -f
3 # Last updated: Sat Dec 23 08:53:20 PST 1995 by kevin@aimnet.com
5 # To make the binary distribution package, the ``Debianized'' source package
6 # and the context diff to the original package, type `./debian.rules dist'.
7 # Make sure that `debian.rules' is executable before the final distribution
8 # is made.
10 # Invoke each target with `./debian.rules <target>'. All targets should be
11 # invoked with the package root as the current directory.
13 # The `binary' target must be run as root, as it needs to install files with
14 # specific ownerships. The `diff' target assumes that you have the original
15 # source package available, unpacked, in ../$(package)-$(version).orig, or that you have
16 # the previous revision of the ``Debianized'' source package and context diff
17 # in the parent directory.
19 CC = gcc
20 CFLAGS = -O2
21 LDFLAGS = -s
23 # The name of the package (for example, `emacs').
24 package = findutils
25 # The version of the package (for example, `19.28').
26 version = 4.1
27 # The Debian revision of the package (for example, `2').
28 debian = 10
30 build:
31 # Builds the binary package.
32 ./configure --prefix=/usr
33 make CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
34 libexecdir=/usr/lib/locate localstatedir=/var/lib/locate
35 ( cd doc ; makeinfo find.texi )
36 touch stamp-build
38 clean:
39 # Undoes the effect of `make -f debian.rules build'.
40 make distclean
41 rm -f doc/find.info*
42 rm -f stamp-build
43 rm -rf debian-tmp
45 binary:
46 # Makes a binary package.
47 test -f stamp-build || make -f debian.rules build
48 install -d -g root -m 755 -o root debian-tmp
49 chmod g-s debian-tmp
50 install -d -g root -m 755 -o root debian-tmp/DEBIAN
51 install -d -g root -m 755 -o root debian-tmp/etc/cron.daily
52 install -g root -m 755 -o root cron.find \
53 debian-tmp/etc/cron.daily/find
54 install -d -g root -m 755 -o root debian-tmp/usr/bin
55 install -g root -m 755 -o root find/find \
56 debian-tmp/usr/bin/find
57 install -g root -m 755 -o root locate/locate \
58 debian-tmp/usr/bin/locate
59 install -g root -m 755 -o root locate/updatedb \
60 debian-tmp/usr/bin/updatedb
61 install -g root -m 755 -o root xargs/xargs \
62 debian-tmp/usr/bin/xargs
63 install -d -g root -m 755 -o root debian-tmp/usr/info
64 install -g root -m 644 -o root doc/find.info* \
65 debian-tmp/usr/info
66 install -d -g root -m 755 -o root debian-tmp/usr/lib/locate
67 install -g root -m 755 -o root locate/bigram locate/code \
68 locate/frcode debian-tmp/usr/lib/locate
69 install -d -g root -m 755 -o root debian-tmp/usr/man/man1
70 install -g root -m 644 -o root find/find.1 \
71 debian-tmp/usr/man/man1/find.1
72 install -g root -m 644 -o root locate/locate.1 \
73 debian-tmp/usr/man/man1/locate.1
74 install -g root -m 644 -o root locate/updatedb.1 \
75 debian-tmp/usr/man/man1/updatedb.1
76 install -g root -m 644 -o root xargs/xargs.1 \
77 debian-tmp/usr/man/man1/xargs.1
78 install -d -g root -m 755 -o root debian-tmp/usr/man/man5
79 install -d -g root -m 755 -o root debian-tmp/usr/lib/locate
80 install -d -g root -m 755 -o root debian-tmp/var/lib
81 install -d -g nogroup -m 2755 -o nobody debian-tmp/var/lib/locate
82 install -g root -m 644 -o root locate/locatedb.5 \
83 debian-tmp/usr/man/man5/locatedb.5
84 install -d -g root -m 755 -o root debian-tmp/usr/doc/copyright
85 install -g root -m 644 -o root debian.README \
86 debian-tmp/usr/doc/copyright/$(package)
87 rm -f debian-tmp/usr/info/find.info*.gz
88 gzip -9f debian-tmp/usr/info/find.info*
89 sed -e '2s/=/$(version)-$(debian)/; \
90 3s/=/$(shell dpkg --print-architecture)/;' \
91 debian.control > debian-tmp/DEBIAN/control
92 chmod 644 debian-tmp/DEBIAN/control
93 install -g root -m 644 -o root debian.conffiles \
94 debian-tmp/DEBIAN/conffiles
95 install -g root -m 755 -o root debian.postinst \
96 debian-tmp/DEBIAN/postinst
97 install -g root -m 755 -o root debian.postrm \
98 debian-tmp/DEBIAN/postrm
99 install -g root -m 755 -o root debian.preinst \
100 debian-tmp/DEBIAN/preinst
101 dpkg --build debian-tmp
102 mv debian-tmp.deb ../$(package)-$(version)-$(debian).deb
104 source: clean
105 # Makes a source package.
106 ( cd .. && tar cf - $(package)-$(version) | \
107 gzip -9f > $(package)-$(version)-$(debian).tar.gz )
109 diff: clean
110 # Makes a context diff.
111 -test -d ../$(package)-$(version).orig -o \
112 -f ../$(package)-$(version)-`expr $(debian) - 1`.diff.gz \
113 || ( echo "Original source package is not available." ; false )
114 -test -d ../$(package)-$(version).orig || make -f debian.rules orig
115 #cp -a ../$(package)-$(version).orig/doc/find.info* doc
116 cd .. && \
117 (diff -ruN $(package)-$(version).orig $(package)-$(version) \
118 >$(package)-$(version)-$(debian).diff; [ $$? = 1 ]) && \
119 gzip -9vf $(package)-$(version)-$(debian).diff
120 -test -f stamp-orig \
121 && rm -rf ../$(package)-$(version).orig && rm -f stamp-orig
123 dist: binary source diff
124 # Prepares the package for distribution.
126 orig:
127 # Prepares the original package from the previous
128 # Debian revision source package and context diff.
129 ( cd .. \
130 && mkdir $(package).orig \
131 && cd $(package).orig \
132 && tar xzf ../$(package)-$(version)-`expr $(debian) - 1`.tar.gz \
133 && cd $(package)-$(version) \
134 && ( zcat ../../$(package)-$(version)-`expr $(debian) - 1`.diff.gz \
135 | patch -sER -p1 ) \
136 && find . -name "*.orig" -exec rm -f {} \; \
137 && cd .. \
138 && mv $(package)-$(version) ../$(package)-$(version).orig \
139 && cd .. \
140 && rmdir $(package).orig )
141 touch stamp-orig