Skip to content
Commits on Source (2)
......@@ -3,6 +3,10 @@ proftpd-mod-clamav (0.14~rc2-3) UNRELEASED; urgency=medium
[ Hilmar Preuße ]
* Remove Depends on clamav, lower to Recommends (Closes: #875891)
This module can utilize a clamav instance on a remote machine via TCP.
* Cleanup d/rules.
- Hardening flags are enabled by debhelper in compat=9
- do not call w/ --without python-support
- whitespace, CR chars
-- Francesco Paolo Lovergine <frankie@debian.org> Wed, 02 May 2018 21:53:16 +0200
......
#!/usr/bin/make -f
# -*- makefile -*-
#export DEB_BUILD_HARDENING=1
export DH_VERBOSE=1
DPKG_EXPORT_BUILDFLAGS = 1
MODULE_NAME=mod_clamav
DEBNAME=proftpd-mod-clamav
include /usr/share/dpkg/buildflags.mk
%:
dh $@ --without python-support
dh $@
override_dh_auto_build:
DESTDIR=$(CURDIR)/debian/$(DEBNAME) prxs -c $(MODULE_NAME).c
......