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
|
#!/usr/bin/make -f
%:
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:
dh_fixperms --exclude etc/keys/mandos \
--exclude etc/mandos/clients.conf \
--exclude etc/mandos/plugins.d \
--exclude usr/lib/$(shell dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null)/mandos/plugins.d \
--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"
|