20 lines
421 B
Plaintext
20 lines
421 B
Plaintext
|
# Description: Validating resolver library
|
||
|
# URL: http://unbound.net/index.html
|
||
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
||
|
# Depends on: openssl
|
||
|
|
||
|
name=libunbound
|
||
|
version=1.7.1
|
||
|
release=1
|
||
|
source=(https://unbound.net/downloads/unbound-$version.tar.gz)
|
||
|
|
||
|
build () {
|
||
|
cd unbound-$version
|
||
|
|
||
|
./configure --prefix=/usr \
|
||
|
--with-libunbound-only
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|