# Maintainer: Erich Eckner pkgname=python2-courier-pythonfilter _pkgname='courier-pythonfilter' pkgver=1.11 pkgrel=2 pkgdesc='collection of useful filters for the Courier MTA, and a framework for developing new filters in Python' arch=('any') url='https://github.com/szepeviktor/courier-pythonfilter/' license=('GPL') depends=( 'python2>=2.7' 'python2<2.8' ) makedepends=( 'python2-setuptools') source=("http://www.dragonsdawn.net/~gordon/courier-pythonfilter/${_pkgname}-${pkgver}.tar.gz") sha512sums=('75ffff7d9692861c535ee18d1d25954c79e81275641172ad706caf0c65dc715ffd4a1c021b0e26fc992fffdf6c2842ed8fc688eff82ec42591b35af834c0ace4') backup=('etc/pythonfilter-modules.conf' 'etc/pythonfilter.conf') optdepends=( 'python2-pyclamav: Virus Scan' 'python2-pydns: dialback' 'python2-spf: spfcheck and whitelist_spf' 'spamassassin: Spam Detection' ) build() { cd "${srcdir}/${_pkgname}-${pkgver}" python2 setup.py build } package() { depends+=('courier-mta') cd "${srcdir}/${_pkgname}-${pkgver}" python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 find "${pkgdir}" -type f -exec sed -i ' 1 s,^#!/usr/bin/python$,\02,' {} \; rm "${pkgdir}/usr/lib/python2"*"/site-packages/${_pkgname//-/_}-${pkgver}-py2"*".egg-info" }