+Debian .deb packaging.
[captive.git] / debian / rules
1 #!/usr/bin/make -f
2 # Makefile for Debian dpkg-buildpackage(1)
3 # Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 # Uncomment this to turn on verbose mode. 
20 #export DH_VERBOSE=1
21
22 # This is the debhelper compatibility version to use.
23 export DH_COMPAT=3
24
25 # These are used for cross-compiling and for saving the configure script
26 # from having to guess our platform (since we know it already)
27 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
28 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
29
30
31 #ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
32 #       CFLAGS += -g
33 #endif
34 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
35         INSTALL_PROGRAM += -s
36 endif
37
38 config.status: configure
39         dh_testdir
40         ./configure --prefix=/usr --sysconfdir=/etc \
41                 --enable-shared --disable-static \
42                 --with-readline \
43                 --with-sandbox-setuid=captive \
44                 --with-sandbox-setgid=captive \
45                 --with-sandbox-chroot=/var/lib/captive \
46                 --disable-gtk-doc
47
48 build-arch:  config.status build-arch-stamp
49 build-arch-stamp:
50         dh_testdir
51         $(MAKE)
52         touch build-arch-stamp
53
54 build: build-arch
55
56 clean:
57         dh_testdir
58         dh_testroot
59         rm -f build-stamp 
60         # Do not: -$(MAKE) distclean
61         # as we are run in clean distribution archive by AutoGen.pm
62         dh_clean
63
64 install: DH_OPTIONS=
65 install: build
66         dh_testdir
67         dh_testroot
68         dh_clean -k
69         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install-strip
70         dh_movefiles
71
72 # Build architecture-dependent files here.
73 binary-arch: build install
74         dh_testdir -a
75         dh_testroot -a
76 #       dh_installdebconf -a
77         dh_installdocs -a
78 #       dh_installinit -a
79 #       dh_installman -a
80 #       dh_installchangelogs ChangeLog -a
81         dh_link -a
82         dh_compress -a
83         dh_fixperms -a
84         dh_makeshlibs -a
85         dh_installdeb -a
86         # FIXME: warning: could not find path for libcaptive-0.9cvs.so
87         #dh_shlibdeps -a
88         dh_gencontrol -a
89         dh_md5sums -a
90         dh_builddeb -a
91
92 binary: binary-arch
93 .PHONY: build clean binary-arch binary install