diff options
Diffstat (limited to 'core/dnsutils/PKGBUILD')
-rw-r--r-- | core/dnsutils/PKGBUILD | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/core/dnsutils/PKGBUILD b/core/dnsutils/PKGBUILD index 823df71de..12829b5d1 100644 --- a/core/dnsutils/PKGBUILD +++ b/core/dnsutils/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 122965 2011-05-07 14:46:05Z bisson $ +# $Id: PKGBUILD 125626 2011-05-27 10:41:33Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: kevin <kevin@archlinux.org> # Contributor: mario <mario_vazq@hotmail.com> @@ -6,8 +6,8 @@ pkgname=dnsutils # Use a period and not a hyphen before the patch level for proper versioning. -pkgver=9.8.0.P1 -_pkgver=9.8.0-P1 +pkgver=9.8.0.P2 +_pkgver=9.8.0-P2 pkgrel=1 pkgdesc='Various DNS utilities - dig host nslookup nsupdate' @@ -19,21 +19,30 @@ replaces=('bind-tools' 'host') options=('!makeflags') source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz" 'tools-only.patch') -sha1sums=('aa8f308f218e437ac4bad616e0ae83a9b9c40c29' +sha1sums=('b3492ad11cfbf2939d9b0fb62c52c204de58679b' 'ac88c89e25c26d73095a3dd85e1ca1070d184ded') build() { cd "${srcdir}/bind-${_pkgver}" - patch -p1 < ../tools-only.patch + + patch -p1 -i ../tools-only.patch export STD_CDEFINES='-DDIG_SIGCHASE' + ./configure \ - --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --with-openssl=yes --with-idn=yes --disable-linux-caps + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-openssl=yes \ + --with-idn=yes \ + --disable-linux-caps \ + make } package() { cd "${srcdir}/bind-${_pkgver}/bin" + make DESTDIR="${pkgdir}" install + install -Dm644 ../COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } |