blob: 0f9efbb2a48ccf8d3399a0ddac26ab2e13fce9df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- --enable-reduced-depends
# We rebuild the perl directory Makefile to encode the correct installation
# paths, since otherwise it defaults to using the local site module path.
override_dh_auto_install:
cd perl && perl Makefile.PL INSTALLDIRS=vendor
dh_auto_install
install -d debian/tmp/etc/remctl/acl
install -m 0644 config/keytab.acl debian/tmp/etc/remctl/acl/keytab
override_dh_installchangelogs:
dh_installchangelogs NEWS
override_dh_compress:
dh_compress -X examples
|