blob: dbfda3e25f0b298cdd1021049138ec79927cab0d (
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.16.3
8 release=1
9 source=(https://unbound.net/downloads/unbound-$version.tar.gz)
10
11 build () {
12 cd unbound-$version
13
14 ./configure \
15 --prefix=/usr \
16 --with-libunbound-only
17
18 make
19 make DESTDIR=$PKG install
20 }
|