pkg-config file reports the keyfile path.
[email-providers] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # GNU copyright 1997 to 1999 by Joey Hess.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9
10 # These are used for cross-compiling and for saving the configure script
11 # from having to guess our platform (since we know it already)
12 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
13 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
14
15 config.status:
16         if [ ! -x configure ]; then ./autogen.sh; fi
17         dh_testdir
18         # Add here commands to configure the package.
19         CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --sysconfdir=/etc --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
20
21
22 build: build-stamp
23
24 build-stamp:  config.status
25         dh_testdir
26
27         # Add here commands to compile the package.
28         $(MAKE)
29
30         touch build-stamp
31
32 clean:
33         dh_testdir
34         dh_testroot
35         rm -f build-stamp 
36
37         # Add here commands to clean up after the build process.
38         -$(MAKE) distclean
39 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
40         cp -f /usr/share/misc/config.sub config.sub
41 endif
42 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
43         cp -f /usr/share/misc/config.guess config.guess
44 endif
45
46
47         dh_clean 
48
49 install: build
50         dh_testdir
51         dh_testroot
52         dh_clean -k 
53         dh_installdirs
54
55         # Add here commands to install the package into debian/modest
56         $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
57
58
59 # Build architecture-independent files here.
60 binary-indep: build install
61 # We have nothing to do by default.
62
63 # Build architecture-dependent files here.
64 binary-arch: build install
65         dh_testdir
66         dh_testroot
67         dh_installchangelogs 
68         dh_installdocs
69 #       dh_installexamples
70         dh_install --sourcedir=debian/tmp -v
71 #       dh_installmenu
72 #       dh_installdebconf       
73 #       dh_installlogrotate
74 #       dh_installemacsen
75 #       dh_installpam
76 #       dh_installmime
77 #       dh_installinit
78 #       dh_installcron
79 #       dh_installinfo
80 #       dh_installman
81 #       dh_link
82 #       dh_strip 
83         dh_compress
84         dh_fixperms
85 #       dh_perl
86 #       dh_python
87 #       dh_makeshlibs
88 #       dh_installdeb
89 #       dh_shlibdeps
90         dh_gencontrol
91         dh_md5sums
92         dh_builddeb
93
94 binary: binary-indep binary-arch
95 .PHONY: build clean binary-indep binary-arch binary install