summaryrefslogtreecommitdiff
path: root/community/unbound/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/unbound/PKGBUILD
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/unbound/PKGBUILD')
-rw-r--r--community/unbound/PKGBUILD46
1 files changed, 46 insertions, 0 deletions
diff --git a/community/unbound/PKGBUILD b/community/unbound/PKGBUILD
new file mode 100644
index 000000000..b68c81348
--- /dev/null
+++ b/community/unbound/PKGBUILD
@@ -0,0 +1,46 @@
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net>
+# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service>
+
+pkgname=unbound
+pkgver=1.4.9
+pkgrel=1
+pkgdesc='Validating, recursive, and caching DNS resolver'
+arch=('i686' 'x86_64')
+url='http://unbound.net/'
+license=('custom:BSD')
+options=('!libtool')
+depends=('openssl' 'ldns')
+makedepends=('expat')
+optdepends=('expat: unbound-anchor')
+backup=('etc/unbound/unbound.conf')
+source=("http://unbound.net/downloads/$pkgname-$pkgver.tar.gz"
+ 'unbound.conf'
+ 'rc.d')
+sha1sums=('f2ac7b4ef1d1b330e2dd5e2eedeb6fd2bbad8478'
+ '5d473ec2943fd85367cdb653fcd58e186f07383f'
+ 'a0c8c496d71d43ed9e09b170d3df836dfb096480')
+
+install=install
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --enable-static=no \
+ --disable-rpath \
+ --with-conf-file=/etc/unbound/unbound.conf \
+ --with-pidfile=/var/run/unbound.pid
+ make
+}
+
+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"
+}