diff options
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..09cf085 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: Johannes Löthberg <johannes@kyriasis.com +# Contributor: Michael Hiller <glako-at-sojasau.de> + +pkgname=spambayes +pkgver=1.1a6 +pkgrel=3 +pkgdesc="Bayesian anti-spam classifier written in Python" +arch=('any') +url="http://spambayes.sourceforge.net/" +license=('PSF') +depends=('python2' 'python2-lockfile') +source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('d06ed6d097911ddc8db31b4e9663df4b') + +package() { + cd spambayes-$pkgver + python2 setup.py install --root="$pkgdir" +} |