16 lines
264 B
Makefile
Executable File
16 lines
264 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export PYBUILD_NAME=fail2ban-p2p
|
|
|
|
%:
|
|
dh $@ --with python3
|
|
|
|
override_dh_auto_build:
|
|
python3 setup.py build
|
|
|
|
override_dh_auto_install:
|
|
python3 setup.py install \
|
|
--root=$(CURDIR)/debian/fail2ban-p2p \
|
|
--install-layout=deb \
|
|
--no-compile
|