summaryrefslogtreecommitdiff
path: root/extra/bogofilter
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-07 02:29:26 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-07 02:29:26 -0300
commit3357db80ffa8a795fb5cdad0fc726470887706b0 (patch)
tree461a9d95f958d88aed12f371328b20d87b69323e /extra/bogofilter
parent1921cc4951557545f38946cbed66431f42af26b4 (diff)
parentff64a82ccedcb1690d2f0140d63432aa49676591 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/perl-file-path-expand/PKGBUILD community/perl-file-slurp/PKGBUILD community/perl-getopt-argvfile/PKGBUILD community/perl-graphics-colornames/PKGBUILD community/perl-html-tableextract/PKGBUILD community/perl-xml-regexp/PKGBUILD community/perlio-eol/PKGBUILD community/virtualbox/PKGBUILD community/xemacs/PKGBUILD core/gawk/PKGBUILD extra/bogofilter/PKGBUILD extra/feh/PKGBUILD extra/gnome-phone-manager/PKGBUILD extra/redland/PKGBUILD extra/ruby/PKGBUILD extra/samba/PKGBUILD extra/squirrelmail/PKGBUILD extra/subversion/PKGBUILD extra/vsftpd/PKGBUILD extra/xawtv/PKGBUILD multilib-testing/lib32-mesa/PKGBUILD multilib/lib32-glib2/PKGBUILD testing/mesa/PKGBUILD
Diffstat (limited to 'extra/bogofilter')
-rw-r--r--extra/bogofilter/PKGBUILD20
1 files changed, 10 insertions, 10 deletions
diff --git a/extra/bogofilter/PKGBUILD b/extra/bogofilter/PKGBUILD
index c75b6be38..9c939fe03 100644
--- a/extra/bogofilter/PKGBUILD
+++ b/extra/bogofilter/PKGBUILD
@@ -1,21 +1,21 @@
-# $Id: PKGBUILD 110357 2011-02-18 23:42:09Z allan $
+# $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=2
+pkgrel=3
pkgdesc="A fast Bayesian spam filtering tool"
arch=('i686' 'x86_64' 'mips64el')
-license=(GPL3)
+license=('GPL3')
url="http://bogofilter.sourceforge.net"
depends=('db' 'perl' 'gsl')
-backup=(etc/bogofilter/bogofilter.cf)
+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}
+ cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--sysconfdir=/etc/bogofilter \
--localstatedir=/var \
@@ -24,11 +24,11 @@ build() {
}
package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
- mv ${pkgdir}/etc/bogofilter/bogofilter.cf.example ${pkgdir}/etc/bogofilter/bogofilter.cf
+ 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/
+ install -dm755 "${pkgdir}/usr/share/${pkgname}/contrib"
+ install -m644 contrib/* "${pkgdir}/usr/share/${pkgname}/contrib/"
}