summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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() {