-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrules.deb-light.in
113 lines (96 loc) · 3.1 KB
/
rules.deb-light.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/usr/bin/make -f
# Samhain debian/rules
# GNU copyright 20001 to 2003 by Javier Fernandez-Sanguino
# based on
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
# Modified to use mydefargs by Rainer Wichmann.
#
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This is the debhelper compatability version to use.
export DH_COMPAT=4
package=@install_name@
# CAVEAT: including the --enable-base= option is for packages to be
# distributed INTERNALLY on your network, NOT for packages
# to be distributed to THIRD PARTIES
build: build-stamp
build-stamp:
dh_testdir
@top_srcdir@/configure @mydefargs@
$(MAKE)
echo '#!/bin/sh' > ./sstrip
echo 'echo "*** SSTRIP DISABLED ***"' >> ./sstrip
if ! test x$(PASSWORD) = x; then \
if test -f samhain_setpwd; then \
./samhain_setpwd samhain new $(PASSWORD); \
rm samhain; \
mv samhain.new samhain; \
fi; \
fi
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp
-[ -f Makefile ] && $(MAKE) distclean
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
$(MAKE) install-light install-boot DESTDIR=`pwd`/debian/@install_name@
# $(MAKE) install-light install-boot DESTDIR=`pwd`/debian/tmp
# However, remove the rc.d links
-rm -rf `pwd`/debian/tmp/etc/rc?.d
# Remove samhain_stealth for light install
-rm -f `pwd`/debian/tmp/@sbindir@/@install_name@_stealth
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
# Build architecture-dependent files here.
binary-arch: build install
# dh_testversion
dh_testdir
dh_testroot
dh_installdebconf
# dh_installdocs
dh_installmenu
dh_installinit -- defaults 19
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%/etc/init.d/@install_name@ start%:%' > postinst.tmp && \
mv postinst.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%invoke-rc.d @install_name@ start%:%' > postinst.tmp && \
mv postinst.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%/etc/init.d/@install_name@ stop%/etc/init.d/@install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \
mv prerm.tmp @[email protected]
[ -f debian/@[email protected] ] && \
cd debian && \
cat @[email protected] | \
sed 's%invoke-rc.d @install_name@ stop%invoke-rc.d @install_name@ stop || echo service @install_name@ already stopped%' > prerm.tmp && \
mv prerm.tmp @[email protected]
# dh_installmanpages
# dh_installchangelogs @top_srcdir@/docs/Changelog
dh_link
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
define checkdir
test -f debian/rules
endef
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install