diff options
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1d2f446 --- /dev/null +++ b/debian/rules @@ -0,0 +1,35 @@ +#!/usr/bin/make -f + +# Add hardening build flags. +export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow,+pie + +# The additional flags to pass to Build.PL, picked up by the upstream build +# system. +export WALLET_PERL_FLAGS := --installdirs vendor --create_packlist 0 + +# Enable some additional Perl tests. +export AUTOMATED_TESTING = 1 + +%: +	dh $@ --parallel --with autoreconf + +override_dh_auto_configure: +	dh_auto_configure --parallel -- --enable-reduced-depends + +# Install the remctl configuration as part of the build. +override_dh_auto_install: +	dh_auto_install +	install -d debian/tmp/etc/remctl/acl +	install -m 0644 config/keytab.acl debian/tmp/etc/remctl/acl/keytab +	install -m 0644 config/wallet-report.acl \ +	    debian/tmp/etc/remctl/acl/wallet-report + +# Override install to check for missing installed files. +override_dh_install: +	dh_install --fail-missing + +override_dh_installchangelogs: +	dh_installchangelogs NEWS + +override_dh_compress: +	dh_compress -X examples | 
