diff options
author | root <root@rshg054.dnsready.net> | 2012-03-10 00:01:15 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-03-10 00:01:15 +0000 |
commit | 3792e3874accbc868e7032042f1ecefdef25638e (patch) | |
tree | 2ba250e0011924d6172b918515475864187e84db /testing/dirmngr/PKGBUILD | |
parent | 0a7c64736c0b026c3105928d89500a8af1ad5eac (diff) |
Sat Mar 10 00:01:15 UTC 2012
Diffstat (limited to 'testing/dirmngr/PKGBUILD')
-rw-r--r-- | testing/dirmngr/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/dirmngr/PKGBUILD b/testing/dirmngr/PKGBUILD new file mode 100644 index 000000000..664edb56c --- /dev/null +++ b/testing/dirmngr/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 152680 2012-03-08 13:28:23Z tpowa $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=dirmngr +pkgver=1.1.0 +pkgrel=4 +pkgdesc="A daemon to handle CRL and certificate requests" +arch=('i686' 'x86_64') +license=('GPL') +url="ftp://ftp.gnupg.org/gcrypt/dirmngr" +depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth') +source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.bz2) +install=dirmngr.install + +build() { + cd $srcdir/$pkgname-$pkgver + # FIX for https://bugzilla.redhat.com/565131 + # not sure how best to turn this into something more upstreamable + # patch configure to try this combo first? -- Rex + # https://bugs.archlinux.org/task/28606 + export LDAPLIBS="-lldap -llber" + ./configure --prefix=/usr --libexecdir=/usr/lib + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} +md5sums=('f2570f0248f5947daac200e85291b328') |