blob: 9883dce698114697d663929f5afe36e2b6cca421 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Contributor: Luis Ressel <aranea@aixah.de>
# Maintainer: Alyx Wolcott <alyx@leuhta.com>
pkgname=unbound
pkgver=1.9.6
pkgrel=0
pkgdesc="A validating, recursive and caching DNS resolver"
url="https://nlnetlabs.nl/projects/unbound/about/"
arch="all"
options="!checkroot"
license="BSD-3-Clause"
depends=""
makedepends="expat-dev libevent-dev openssl-dev python3-dev swig"
subpackages="$pkgname-dev $pkgname-doc $pkgname-openrc $pkgname-python"
install="$pkgname.pre-install"
pkgusers="unbound"
pkggroups="unbound"
source="https://nlnetlabs.nl/downloads/$pkgname/$pkgname-$pkgver.tar.gz
unbound.confd
unbound.initd"
# secfixes:
# 1.9.5-r0:
# - CVE-2019-18934
build() {
# cachedb, dnscrypt and dnstap have yet unpackaged dependencies
PYTHON_VERSION=3 ./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--disable-rpath \
--with-rootkey-file=/etc/unbound/var/root.key \
--with-pidfile=/run/unbound.pid \
--enable-tfo-client \
--enable-tfo-server \
--disable-cachedb \
--disable-dnscrypt \
--disable-dnstap \
--enable-ipsecmod \
--enable-subnet \
--with-pthreads \
--with-pyunbound \
--without-pythonmodule \
--with-ssl=/usr \
--with-libevent=/usr \
--with-libexpat=/usr
make
}
check() {
make test
}
package() {
make DESTDIR="$pkgdir" install
install -do unbound "$pkgdir/etc/unbound/var"
}
openrc() {
default_openrc
install -Dm755 "$srcdir/unbound.initd" "$subpkgdir/etc/init.d/unbound"
install -Dm644 "$srcdir/unbound.confd" "$subpkgdir/etc/conf.d/unbound"
}
python() {
pkgdesc="$pkgdesc (Python bindings)"
install -d "$subpkgdir/usr/lib"
mv "$pkgdir/usr/lib/python"* "$subpkgdir"
}
sha512sums="39a60f51da912ed25d247bc1e882b1242d80a63b0c2b3f753d38ed558f3a24691267375136ff6d85e5945a98ca0c4ac87e43e131c97737a355374dde64259951 unbound-1.9.6.tar.gz
de9dc269553f5449c1757690c2a8a3b9f228964f5672d721cfdbc29e6fab8954907fa4fa3761dd6f705b3ccd2f729cc6e2fe870107feb68cca611589f8306b94 unbound.confd
6627cbcbcb4e04f596e7e0ffdbf80ceb54cdb59144cb89896e53503dfb41b99fd77d8b85d05e6670f77023b6eafec8885b00c0c8e4e34e3e638c52c037a7985e unbound.initd"
|