added extended description
[findutils.git] / debian.rules
blob9af2f7c21cf97681a0051d2b9cde1556e89ad0fe
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 = 11
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 '2s/=/$(version)-$(debian)/; \
89 3s/=/$(shell dpkg --print-architecture)/;' \
90 debian.control > debian-tmp/DEBIAN/control
91 chmod 644 debian-tmp/DEBIAN/control
92 install -g root -m 644 -o root debian.conffiles \
93 debian-tmp/DEBIAN/conffiles
94 install -g root -m 755 -o root debian.postinst \
95 debian-tmp/DEBIAN/postinst
96 install -g root -m 755 -o root debian.postrm \
97 debian-tmp/DEBIAN/postrm
98 install -g root -m 755 -o root debian.preinst \
99 debian-tmp/DEBIAN/preinst
100 dpkg --build debian-tmp
101 mv debian-tmp.deb \
102 ../$(package)-$(version)-$(debian).$(shell dpkg --print-architecture).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