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
|
#!/usr/bin/make -f
ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += OPTIMIZE=-O0
endif
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
endif
%:
dh $@
override_dh_auto_build-arch:
LC_ALL=en_US.utf8 dh_auto_build -- all doc
override_dh_auto_build-indep:
LC_ALL=en_US.utf8 dh_auto_build -- doc
override_dh_installinit-indep:
dh_installinit --onlyscripts \
--update-rcd-params="defaults 25 15"
override_dh_auto_install-indep:
$(MAKE) DESTDIR=$(CURDIR)/debian/mandos install-server
override_dh_auto_install-arch:
$(MAKE) DESTDIR=$(CURDIR)/debian/mandos-client \
install-client-nokey
override_dh_fixperms-arch:
dh_fixperms --exclude etc/keys/mandos \
--exclude etc/mandos/plugins.d \
--exclude etc/mandos/plugin-helpers \
--exclude usr/lib/$(DEB_HOST_MULTIARCH)/mandos/plugins.d \
--exclude usr/lib/$(DEB_HOST_MULTIARCH)/mandos/plugin-helpers \
--exclude usr/share/doc/mandos-client/examples/network-hooks.d
chmod --recursive g-w -- \
"$(CURDIR)/debian/mandos-client/usr/share/doc/mandos-client/examples/network-hooks.d"
override_dh_fixperms-indep:
dh_fixperms --exclude etc/mandos/clients.conf
override_dh_auto_test-arch: ;
|