blob: 0718381d14f738170cfd9290300c072bf161b563 (
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: openssl
5
6 name=libunbound
7 version=1.7.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 }
|