diff options
author | root <root@rshg054.dnsready.net> | 2012-05-23 00:02:37 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-23 00:02:37 +0000 |
commit | bd614ac21d2754d778a796cd5e92d1568ec8baec (patch) | |
tree | 094c785b4da8bafd835e9e319e9908b776258975 /testing/ldns | |
parent | 62e13d20ed92262c7396eff00d048ce815693e74 (diff) |
Wed May 23 00:02:37 UTC 2012
Diffstat (limited to 'testing/ldns')
-rw-r--r-- | testing/ldns/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/ldns/PKGBUILD b/testing/ldns/PKGBUILD new file mode 100644 index 000000000..18573ced5 --- /dev/null +++ b/testing/ldns/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 159317 2012-05-21 14:35:28Z bisson $ +# Maintainer: Gaetan Bisson <bisson@archlinux.org> +# Contributor: mathieui <mathieui@mathieui.net> +# Contributor: jiribb <jiribb@gmail.com> + +pkgname=ldns +pkgver=1.6.13 +pkgrel=1 +pkgdesc='Fast DNS library supporting recent RFCs' +url='http://www.nlnetlabs.nl/projects/ldns/' +license=('custom:BSD') +arch=('i686' 'x86_64') +options=('!libtool') +depends=('openssl' 'dnssec-anchors') +optdepends=('libpcap: ldns-dpa tool') +makedepends=('libpcap') +source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('859f633d10b763f06b602e2113828cbbd964c7eb') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --enable-static=no \ + --disable-rpath \ + --with-drill \ + --with-examples \ + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |