diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
commit | 0ff008e3c9dcc5ef088f481dfff3dcd121575598 (patch) | |
tree | d6f6cf5d6939e1f030a48d3711d3606570afd08f /pcr/anubis | |
parent | ed9d1c12bbfcf9cb8b3d53e886edb679df372640 (diff) | |
download | abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.gz abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.tar.bz2 abslibre-0ff008e3c9dcc5ef088f481dfff3dcd121575598.zip |
move some packages from [social] to [pcr] and remove unused [social]
Diffstat (limited to 'pcr/anubis')
-rw-r--r-- | pcr/anubis/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pcr/anubis/PKGBUILD b/pcr/anubis/PKGBUILD new file mode 100644 index 000000000..1b345a943 --- /dev/null +++ b/pcr/anubis/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Nicolás Reynolds <fauno@kiwwwi.com.ar> +# Contributor (Arch): Nathan Owe <ndowens04 at gmail> +pkgname=anubis +pkgver=4.1.1 +pkgrel=2 +pkgdesc="An SMTP message submission daemon. " +arch=('i686') +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') + +build() { + cd $srcdir/$pkgname-$pkgver + + ./configure --prefix=/usr \ + --with-pam \ + --with-pcre \ + --with-tcp-wrappers \ + --with-socks-proxy + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir/ install +} + +# vim:set ts=2 sw=2 et: |