14 lines
380 B
Makefile
Executable File
14 lines
380 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# You must remove unused comment lines for the released package.
|
|
#export DH_VERBOSE = 1
|
|
|
|
export PYBUILD_NAME=fail2ban-p2p
|
|
DESTDIR=$(CURDIR)/debian/fail2ban-p2p
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild --root=$(DESTDIR) --no-compile --install-layout=deb
|
|
|
|
override_dh_auto_test:
|
|
echo "Not running tests - upstream tarball doesn't provide any."
|
|
|