2013-09-25 14:57:21 +02:00
|
|
|
#!/usr/bin/make -f
|
2024-03-26 14:31:12 +01:00
|
|
|
# You must remove unused comment lines for the released package.
|
|
|
|
#export DH_VERBOSE = 1
|
2013-09-25 14:57:21 +02:00
|
|
|
|
2024-03-26 14:31:12 +01:00
|
|
|
export PYBUILD_NAME=fail2ban-p2p
|
2013-09-25 14:57:21 +02:00
|
|
|
DESTDIR=$(CURDIR)/debian/fail2ban-p2p
|
|
|
|
|
2024-03-26 14:31:12 +01:00
|
|
|
%:
|
|
|
|
dh $@ --with python3 --buildsystem=pybuild --root=$(DESTDIR) --no-compile --install-layout=deb
|
2013-09-25 14:57:21 +02:00
|
|
|
|
2024-03-26 14:31:12 +01:00
|
|
|
override_dh_auto_test:
|
|
|
|
echo "Not running tests - upstream tarball doesn't provide any."
|
|
|
|
|