Add initial zsh completion for grml-live.
[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 i386_files debian/grml-live/usr/share/grml-live/
40         cp -a windows     debian/grml-live/usr/share/grml-live/
41         install -o root -m 755 grml-live debian/grml-live/usr/sbin/grml-live
42
43 # Build architecture-independent files here.
44 binary-indep: build install
45 # We have nothing to do by default.
46
47 # Build architecture-dependent files here.
48 binary-arch: build install
49         dh_testdir
50         dh_testroot
51         dh_installchangelogs 
52         dh_installdocs docs/grml-live.html
53         dh_installexamples
54         dh_installman docs/grml-live.8
55         dh_link
56         dh_strip
57         dh_compress
58         dh_fixperms
59         # make sure they are executable:
60         chmod 755 debian/grml-live/etc/grml/fai/config/hooks/*
61         dh_installdeb
62         dh_shlibdeps
63         dh_gencontrol
64         dh_md5sums
65         dh_builddeb
66
67 binary: binary-indep binary-arch
68 .PHONY: build clean binary-indep binary-arch binary install