blob: 70514d9fa7772345aaa3809f8fd7152e851d4dc3 (
plain)
1 # Description: Validating resolver library
2 # URL: http://unbound.net/index.html
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: expat openssl
5
6 name=libunbound
7 version=1.10.1
8 release=1
9 source=(https://unbound.net/downloads/unbound-$version.tar.gz)
10
11 build () {
12 cd unbound-$version
13
14 ./configure --prefix=/usr \
15 --with-libunbound-only
16
17 make
18 make DESTDIR=$PKG install
19 }
|