blob: 2d078297522f3967289423f50b26c0fb3e75c28a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Erich Eckner <arch at eckner dot net>
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"
}
|