38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
|
|
# Contributor: mathieui <mathieui@mathieui.net>
|
|
# Contributor: jiribb <jiribb@gmail.com>
|
|
|
|
pkgname=ldns
|
|
pkgver=1.8.3
|
|
pkgrel=2
|
|
pkgdesc='Fast DNS library supporting recent RFCs'
|
|
url='https://www.nlnetlabs.nl/projects/ldns/'
|
|
license=('custom:BSD')
|
|
arch=('x86_64')
|
|
depends=('openssl' 'dnssec-anchors')
|
|
optdepends=('libpcap: ldns-dpa tool')
|
|
makedepends=('libpcap')
|
|
source=("https://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.asc})
|
|
sha256sums=('c3f72dd1036b2907e3a56e6acf9dfb2e551256b3c1bbd9787942deeeb70e7860'
|
|
'SKIP')
|
|
validpgpkeys=('DC34EE5DB2417BCC151E5100E5F8F8212F77A498') # Willem Toorop
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-rpath \
|
|
--with-drill \
|
|
--with-examples \
|
|
--with-trust-anchor=/etc/trusted-key.key \
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|