Fix setgid/setuid typo
[findutils.git] / debian.rules
blob7ff16c841a93897a2fe2f0b20cda8507b58383a4
1 #! /usr/bin/make -f
3 # Last updated: 1996/05/27 08:10:50 by Kevin Dalley <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 = 12
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 stamp-build
42 rm -rf debian-tmp
44 binary:
45 # Makes a binary package.
46 test -f stamp-build || make -f debian.rules build
47 install -d -g root -m 755 -o root debian-tmp
48 chmod g-s debian-tmp
49 install -d -g root -m 755 -o root debian-tmp/DEBIAN
50 install -d -g root -m 755 -o root debian-tmp/etc/cron.daily
51 install -g root -m 755 -o root cron.find \
52 debian-tmp/etc/cron.daily/find
53 install -d -g root -m 755 -o root debian-tmp/usr/bin
54 install -g root -m 755 -o root find/find \
55 debian-tmp/usr/bin/find
56 install -g root -m 755 -o root locate/locate \
57 debian-tmp/usr/bin/locate
58 install -g root -m 755 -o root locate/updatedb \
59 debian-tmp/usr/bin/updatedb
60 install -g root -m 755 -o root xargs/xargs \
61 debian-tmp/usr/bin/xargs
62 install -d -g root -m 755 -o root debian-tmp/usr/info
63 install -g root -m 644 -o root doc/find.info* \
64 debian-tmp/usr/info
65 install -d -g root -m 755 -o root debian-tmp/usr/lib/locate
66 install -g root -m 755 -o root locate/bigram locate/code \
67 locate/frcode debian-tmp/usr/lib/locate
68 install -d -g root -m 755 -o root debian-tmp/usr/man/man1
69 install -g root -m 644 -o root find/find.1 \
70 debian-tmp/usr/man/man1/find.1
71 install -g root -m 644 -o root locate/locate.1 \
72 debian-tmp/usr/man/man1/locate.1
73 install -g root -m 644 -o root locate/updatedb.1 \
74 debian-tmp/usr/man/man1/updatedb.1
75 install -g root -m 644 -o root xargs/xargs.1 \
76 debian-tmp/usr/man/man1/xargs.1
77 install -d -g root -m 755 -o root debian-tmp/usr/man/man5
78 install -d -g root -m 755 -o root debian-tmp/usr/lib/locate
79 install -d -g root -m 755 -o root debian-tmp/var/lib
80 install -d -g nogroup -m 2755 -o nobody debian-tmp/var/lib/locate
81 install -g root -m 644 -o root locate/locatedb.5 \
82 debian-tmp/usr/man/man5/locatedb.5
83 install -d -g root -m 755 -o root debian-tmp/usr/doc/copyright
84 install -g root -m 644 -o root debian.README \
85 debian-tmp/usr/doc/copyright/$(package)
86 rm -f debian-tmp/usr/info/find.info*.gz
87 gzip -9f debian-tmp/usr/info/find.info*
88 sed -e '1s/=/$(package)/; \
89 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 \
103 ../$(package)-$(version)-$(debian).$(shell dpkg --print-architecture).deb
105 source: clean
106 # Makes a source package.
107 ( cd .. && tar cf - $(package)-$(version) | \
108 gzip -9f > $(package)-$(version)-$(debian).tar.gz )
110 diff: clean
111 # Makes a context diff.
112 -test -d ../$(package)-$(version).orig -o \
113 -f ../$(package)-$(version)-`expr $(debian) - 1`.diff.gz \
114 || ( echo "Original source package is not available." ; false )
115 -test -d ../$(package)-$(version).orig || make -f debian.rules orig
116 #cp -a ../$(package)-$(version).orig/doc/find.info* doc
117 cd .. && \
118 (diff -ruN $(package)-$(version).orig $(package)-$(version) \
119 >$(package)-$(version)-$(debian).diff; [ $$? = 1 ]) && \
120 gzip -9vf $(package)-$(version)-$(debian).diff
121 -test -f stamp-orig \
122 && rm -rf ../$(package)-$(version).orig && rm -f stamp-orig
124 dist: binary source diff
125 # Prepares the package for distribution.
127 orig:
128 # Prepares the original package from the previous
129 # Debian revision source package and context diff.
130 ( cd .. \
131 && mkdir $(package).orig \
132 && cd $(package).orig \
133 && tar xzf ../$(package)-$(version)-`expr $(debian) - 1`.tar.gz \
134 && cd $(package)-$(version) \
135 && ( zcat ../../$(package)-$(version)-`expr $(debian) - 1`.diff.gz \
136 | patch -sER -p1 ) \
137 && find . -name "*.orig" -exec rm -f {} \; \
138 && cd .. \
139 && mv $(package)-$(version) ../$(package)-$(version).orig \
140 && cd .. \
141 && rmdir $(package).orig )
142 touch stamp-orig