aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-02-16 02:32:57 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-01 16:03:39 +0200
commitc54eb38d8f57b5f298a8ec09a1a10661dee9e2c4 (patch)
treebd700ea648e9e9b3bb455d28afd3cd98f5abac85
downloadpkgbuilds-c54eb38d8f57b5f298a8ec09a1a10661dee9e2c4.tar.xz
Dump...
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD18
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..dee9277
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by makepkg 4.2.1
+# Mon Jun 1 14:56:46 UTC 2015
+pkgbase = spambayes
+ pkgdesc = Bayesian anti-spam classifier written in Python
+ pkgver = 1.1a6
+ pkgrel = 3
+ url = http://spambayes.sourceforge.net/
+ arch = any
+ license = PSF
+ depends = python2
+ depends = python2-lockfile
+ source = http://downloads.sourceforge.net/sourceforge/spambayes/spambayes-1.1a6.tar.gz
+ md5sums = d06ed6d097911ddc8db31b4e9663df4b
+
+pkgname = spambayes
+
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"
+}