diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-22 20:19:32 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-12-22 20:19:32 -0200 |
commit | ef443f51a8b0cf9eb3327f8c7a8cfb6699b2aa56 (patch) | |
tree | 34a408e467c06207db38861e21808beb2649ff9b /pcr/anubis/PKGBUILD | |
parent | 018fb007e841fd6db3722db4376acbab1200efd7 (diff) | |
parent | d13f9136f9f442d90a3b2dfe7f9841f8a1e13ff2 (diff) | |
download | abslibre-ef443f51a8b0cf9eb3327f8c7a8cfb6699b2aa56.tar.gz abslibre-ef443f51a8b0cf9eb3327f8c7a8cfb6699b2aa56.tar.bz2 abslibre-ef443f51a8b0cf9eb3327f8c7a8cfb6699b2aa56.zip |
Merge branch 'master' of ssh://projects.parabola.nu/~git/abslibre/abslibre
Diffstat (limited to 'pcr/anubis/PKGBUILD')
-rw-r--r-- | pcr/anubis/PKGBUILD | 23 |
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() { |