summaryrefslogtreecommitdiff
path: root/pcr/anubis
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-12-22 10:05:37 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-12-22 10:06:23 -0300
commit52e1ad75f96ccb08d093050faa943e076a4bcfe5 (patch)
treef53747911628d1480107a1f6c5b8849598b86347 /pcr/anubis
parenta1a812593f4cd2a80e9725c928184ed95275cf35 (diff)
gnu anubis upgrade
Diffstat (limited to 'pcr/anubis')
-rw-r--r--pcr/anubis/PKGBUILD23
1 files changed, 15 insertions, 8 deletions
diff --git a/pcr/anubis/PKGBUILD b/pcr/anubis/PKGBUILD
index 1b345a943..8674da32f 100644
--- a/pcr/anubis/PKGBUILD
+++ b/pcr/anubis/PKGBUILD
@@ -1,25 +1,32 @@
# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar>
# Contributor (Arch): Nathan Owe <ndowens04 at gmail>
pkgname=anubis
-pkgver=4.1.1
-pkgrel=2
+pkgver=4.2
+pkgrel=1
pkgdesc="An SMTP message submission daemon. "
-arch=('i686')
+arch=('i686' 'x86_64')
url="http://www.gnu.org/software/anubis/"
license=('GPL3')
-depends=('guile' 'gpgme' 'gnutls' 'gsasl' 'pam' 'pcre' 'tcp_wrappers')
-source=(ftp://ftp.gnu.org/gnu/anubis/$pkgname-$pkgver.tar.gz)
-md5sums=('28df4daee11bc74a9e4b19b425d8a196')
+depends=('guile' 'gpgme' 'gnutls' 'gsasl' 'pam' 'pcre')
+makedepends=('libmariadbclient' 'postgresql-libs')
+source=(ftp://ftp.gnu.org/gnu/anubis/$pkgname-$pkgver.tar.gz{,.sig})
+md5sums=('3ca1dd378ba72900a432004cb9db935f' SKIP)
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr \
+ --with-guile \
--with-pam \
+ --with-mysql \
+ --with-postgres \
--with-pcre \
- --with-tcp-wrappers \
+ --without-tcp-wrappers \
--with-socks-proxy
- make
+
+ # For some reason the GUILE_INCLUDES variable is set but not used
+ # during build.
+ make CFLAGS="$CFLAGS $(guile-config compile)"
}
package() {