summaryrefslogtreecommitdiff
path: root/testing/bogofilter
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-07 05:20:55 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-07 05:20:55 +0000
commitff64a82ccedcb1690d2f0140d63432aa49676591 (patch)
tree8652e2862da57e173c2895b1529b3fe1bfad07cd /testing/bogofilter
parent75b1bc45a0e39074e42b6a26a9f72ac2e049bdc1 (diff)
Thu Jul 7 05:20:55 UTC 2011
Diffstat (limited to 'testing/bogofilter')
-rw-r--r--testing/bogofilter/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/bogofilter/PKGBUILD b/testing/bogofilter/PKGBUILD
deleted file mode 100644
index 860895cf9..000000000
--- a/testing/bogofilter/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 127873 2011-06-19 06:22:51Z eric $
-# Maintainer: tobias <tobias@archlinux.org>
-# Contributor: Low Kian Seong <fastmail_low@speedymail.org>
-
-pkgname=bogofilter
-pkgver=1.2.2
-pkgrel=3
-pkgdesc="A fast Bayesian spam filtering tool"
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://bogofilter.sourceforge.net"
-depends=('db' 'perl' 'gsl')
-backup=('etc/bogofilter/bogofilter.cf')
-source=(http://sourceforge.net/projects/${pkgname}/files/${pkgname}-current/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('4bcabdf8c5e7efefcb508eda7e80eebc')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr \
- --sysconfdir=/etc/bogofilter \
- --localstatedir=/var \
- --enable-transactions
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-
- mv "${pkgdir}/etc/bogofilter/bogofilter.cf.example" "${pkgdir}/etc/bogofilter/bogofilter.cf"
-
- install -dm755 "${pkgdir}/usr/share/${pkgname}/contrib"
- install -m644 contrib/* "${pkgdir}/usr/share/${pkgname}/contrib/"
-}