Initial support for grml_cd stuff
[grml-live.git] / 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 build: build-stamp
13
14 build-stamp:
15         dh_testdir
16         cd docs && $(MAKE) && cd ../
17         touch $@
18
19 clean:
20         dh_testdir
21         dh_testroot
22         rm -f build-stamp
23
24         # Add here commands to clean up after the build process.
25         cd docs && $(MAKE) clean && cd ../
26
27         dh_clean 
28
29 install: build
30         dh_testdir
31         dh_testroot
32         dh_clean -k 
33         dh_installdirs etc/grml/fai/live-initramfs usr/sbin usr/share/doc/grml-live \
34                        usr/share/grml-live
35
36         # Add here commands to install the package into debian/grml-live.
37         cp -a etc debian/grml-live/
38         cp -a examples debian/grml-live/usr/share/doc/grml-live/
39         cp -a x86_files debian/grml-live/usr/share/grml-live/
40         install -o root -m 755 grml-live debian/grml-live/usr/sbin/grml-live
41
42 # Build architecture-independent files here.
43 binary-indep: build install
44 # We have nothing to do by default.
45
46 # Build architecture-dependent files here.
47 binary-arch: build install
48         dh_testdir
49         dh_testroot
50         dh_installchangelogs 
51         dh_installdocs docs/grml-live.html
52         dh_installexamples
53         dh_installman docs/grml-live.8
54         dh_link
55         dh_strip
56         dh_compress
57         dh_fixperms
58         # make sure they are executable:
59         chmod 755 debian/grml-live/etc/grml/fai/config/hooks/*
60         dh_installdeb
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