summaryrefslogtreecommitdiff
path: root/community/ldns/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ldns/PKGBUILD')
-rw-r--r--community/ldns/PKGBUILD20
1 files changed, 10 insertions, 10 deletions
diff --git a/community/ldns/PKGBUILD b/community/ldns/PKGBUILD
index 9ba6f1cf4..df63e9f89 100644
--- a/community/ldns/PKGBUILD
+++ b/community/ldns/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: mathieui <mathieui@mathieui.net>
pkgname=ldns
-pkgver=1.6.9
+pkgver=1.6.10
pkgrel=1
pkgdesc='Fast DNS library with DNSSEC support, including tools such as Drill'
arch=('i686' 'x86_64')
@@ -13,25 +13,25 @@ depends=('openssl')
makedepends=('libpcap')
optdepends=('libpcap: ldns-dpa tool')
options=('!libtool')
-source=("http://www.nlnetlabs.nl/downloads/$pkgname/$pkgname-$pkgver.tar.gz")
-sha1sums=('30d136792433bef44454dc1c70bf55449160c3ad')
+source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('7798a32c6f50a4fb7d56ddf772163dc1cb79c1a4')
build() {
_conf='--prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-static=no --disable-rpath'
- cd "$srcdir/$pkgname-$pkgver"
+ cd "${srcdir}/${pkgname}-${pkgver}"
./configure $_conf
make
- make DESTDIR="$pkgdir" install
- install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ make DESTDIR="${pkgdir}" install
+ install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
cd drill
- ./configure $_conf --with-ldns="$pkgdir"
+ ./configure $_conf --with-ldns="${pkgdir}"
make
- make DESTDIR="$pkgdir" install
+ make DESTDIR="${pkgdir}" install
cd ../examples
- ./configure $_conf --with-ldns="$pkgdir"
+ ./configure $_conf --with-ldns="${pkgdir}"
make
- make DESTDIR="$pkgdir" install
+ make DESTDIR="${pkgdir}" install
}