mirror of https://github.com/fail2ban/fail2ban
49 lines
1.4 KiB
Makefile
Executable File
49 lines
1.4 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
# Sample debian/rules that uses debhelper.
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
# dh-make output file, you may use that output file without restriction.
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --with python2
|
|
|
|
DESTDIR=$(CURDIR)/debian/fail2ban
|
|
|
|
override_dh_clean:
|
|
rm -rf fail2ban.egg-info
|
|
dh_clean
|
|
|
|
override_dh_install:
|
|
rm -f $(DESTDIR)/usr/share/doc/fail2ban/README.Solaris
|
|
# Install Debian shipped jail file in 1 piece (instead of patching
|
|
# the shipped one since there are too many changes)
|
|
install -m 644 debian/jail.conf $(DESTDIR)/etc/fail2ban
|
|
# Remove explicitely created /var/run/fail2ban
|
|
# just to please lintian since init file will
|
|
# take care about it anyways
|
|
rm -rf $(DESTDIR)/var/run/
|
|
# Install bash completion
|
|
install -d $(DESTDIR)/etc/bash_completion.d
|
|
install -m 644 files/bash-completion $(DESTDIR)/etc/bash_completion.d/fail2ban
|
|
|
|
dh_install
|
|
|
|
override_dh_auto_test:
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
|
./fail2ban-testcases-all || :
|
|
endif
|
|
|
|
override_dh_installexamples:
|
|
dh_installexamples config/jail.conf files/ipmasq-*
|
|
|
|
override_dh_installinit:
|
|
dh_installinit -- defaults 99
|
|
|
|
override_dh_installman:
|
|
dh_installman man/*.[15]
|