diff options
author | root <root@rshg054.dnsready.net> | 2011-10-01 23:14:36 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-01 23:14:36 +0000 |
commit | 0f78806d775c4d46c649425fcb67964d53531db8 (patch) | |
tree | 7f0a7491cc53b811c9b5d8f10af67e263391fed6 /community/unbound | |
parent | 22b22c6e016b2a86a0d25e68eeb3fdec286f5352 (diff) |
Sat Oct 1 23:14:36 UTC 2011
Diffstat (limited to 'community/unbound')
-rw-r--r-- | community/unbound/PKGBUILD | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/community/unbound/PKGBUILD b/community/unbound/PKGBUILD index a08f746ec..fc2610b7d 100644 --- a/community/unbound/PKGBUILD +++ b/community/unbound/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service> pkgname=unbound -pkgver=1.4.12 +pkgver=1.4.13 pkgrel=1 pkgdesc='Validating, recursive, and caching DNS resolver' arch=('i686' 'x86_64') @@ -14,17 +14,17 @@ depends=('openssl' 'ldns') makedepends=('expat') optdepends=('expat: unbound-anchor') backup=('etc/unbound/unbound.conf') -source=("http://unbound.net/downloads/$pkgname-$pkgver.tar.gz" +source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz" 'unbound.conf' 'rc.d') -sha1sums=('c46c05d1fa2402a59c10f51864fd4c62d10a472f' +sha1sums=('834ccfd1cb41a44f53b33f8338a8f9cc68febaf7' '5d473ec2943fd85367cdb653fcd58e186f07383f' 'a0c8c496d71d43ed9e09b170d3df836dfb096480') install=install build() { - cd "$srcdir/$pkgname-$pkgver" + cd "${srcdir}/${pkgname}-${pkgver}" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ @@ -37,10 +37,10 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install - install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - install -D -m755 ../rc.d "$pkgdir/etc/rc.d/$pkgname" - install -D -m644 ../unbound.conf "$pkgdir/etc/unbound/unbound.conf" - install -D -m644 doc/example.conf.in "$pkgdir/etc/unbound/unbound.conf.example" + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m755 ../rc.d "${pkgdir}/etc/rc.d/${pkgname}" + install -D -m644 ../unbound.conf "${pkgdir}/etc/unbound/unbound.conf" + install -D -m644 doc/example.conf.in "${pkgdir}/etc/unbound/unbound.conf.example" } |