updated docs for , mentioned that metar is gone. changed some of the packaging files...
[monky] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18 CFLAGS = -Wall -g
19
20 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
21         CFLAGS += -O0
22 else
23         CFLAGS += -O2
24 endif
25
26 configure: configure-stamp
27 configure-stamp:
28         dh_testdir
29         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-double-buffer   --enable-own-window --enable-proc-uptime --enable-mpd --enable-xft --enable-seti
30         touch configure-stamp
31
32
33 build: build-stamp
34
35 build-stamp: configure-stamp 
36         dh_testdir
37
38         $(MAKE)
39 #docbook-to-man debian/conky.sgml > conky.1
40
41         touch build-stamp
42
43 clean:
44         dh_testdir
45         dh_testroot
46         rm -f build-stamp configure-stamp
47         rm -f config.cache config.status config.log
48         -$(MAKE) clean
49
50         dh_clean 
51
52 install: build
53         dh_testdir
54         dh_testroot
55         dh_clean -k 
56         dh_installdirs
57
58         $(MAKE) install DESTDIR=$(CURDIR)/debian/conky
59
60
61 # Build architecture-independent files here.
62 binary-indep: build install
63 # We have nothing to do by default.
64
65 # Build architecture-dependent files here.
66 binary-arch: build install
67         dh_testdir
68         dh_testroot
69         dh_installchangelogs ChangeLog
70         dh_installdocs AUTHORS README TODO doc/docs.html doc/variables.html doc/config_settings.html
71         dh_installexamples doc/conkyrc.sample
72         dh_installmenu
73         dh_installman doc/conky.1
74         dh_link
75         dh_strip
76         dh_compress
77         dh_fixperms
78         dh_installdeb
79         dh_shlibdeps
80         dh_gencontrol
81         dh_md5sums
82         dh_builddeb
83
84 binary: binary-indep binary-arch
85 .PHONY: build clean binary-indep binary-arch binary install configure