954b80cfd99e5124aac888df4497179fd7c8a9ce
[grml-etc.git] / 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 build: build-stamp
10
11 build-stamp:
12         dh_testdir
13
14         touch build-stamp
15
16 clean:
17         dh_testdir
18         dh_testroot
19         rm -f build-stamp
20
21         dh_clean 
22         rm -rf debian/grml-etc/
23
24 install: build
25         dh_testdir
26         dh_testroot
27         dh_clean -k 
28         dh_installdirs
29
30         # Add here commands to install the package into debian/grml-etc.
31         cp -a etc/                       debian/grml-etc/
32
33 # Build architecture-independent files here.
34 binary-indep: build install
35 # We have nothing to do by default.
36
37 # Build architecture-dependent files here.
38 binary-arch: build install
39         dh_testdir
40         dh_testroot
41         dh_installchangelogs 
42         dh_installdocs
43         dh_link /etc/rcS.d/important_notice /etc/rc0.d/important_notice
44         dh_link /etc/rcS.d/important_notice /etc/rc1.d/important_notice
45         dh_link /etc/rcS.d/important_notice /etc/rc2.d/important_notice
46         dh_link /etc/rcS.d/important_notice /etc/rc3.d/important_notice
47         dh_link /etc/rcS.d/important_notice /etc/rc4.d/important_notice
48         dh_link /etc/rcS.d/important_notice /etc/rc5.d/important_notice
49         dh_link /etc/rcS.d/important_notice /etc/rc6.d/important_notice
50         dh_link /etc/init.d/grml-reboot     /etc/init.d/grml-halt
51         dh_link /usr/share/irssi/scripts/scriptassist.pl /etc/skel/.irssi/scripts/autorun/scriptassist.pl
52         dh_compress
53         mkdir -p debian/grml-etc/usr/share/lintian/overrides/ 
54         cp -av debian/overrides debian/grml-etc/usr/share/lintian/overrides/grml-etc
55         dh_fixperms
56         chmod 0600 debian/grml-etc/etc/mgetty/login.config
57         chmod 0755  debian/grml-etc/etc/skel/.config/rox.sourceforge.net/MIME-types/image
58         dh_installdeb
59         find debian/grml-etc/etc -type f ! -name \*.xpm ! -name \*.png -print | \
60         sed -e 's#^debian/grml-etc##g' > debian/grml-etc/DEBIAN/conffiles
61         dh_shlibdeps
62         dh_gencontrol
63         dh_md5sums
64         dh_builddeb
65
66 binary: binary-indep binary-arch
67 .PHONY: build clean binary-indep binary-arch binary install