2018-06-22 20:27:03 +02:00
|
|
|
VERSION="1.7.0"
|
|
|
|
SRCDIR="ldns-${VERSION}"
|
|
|
|
TARBALL="${SRCDIR}.tar.gz"
|
|
|
|
URL="https://www.nlnetlabs.nl/downloads/ldns"
|
|
|
|
SHA256SUM="c19f5b1b4fb374cfe34f4845ea11b1e0551ddc67803bd6ddd5d2a20f0997a6cc"
|
2019-03-30 23:28:30 +01:00
|
|
|
DEPENDS="openssl-dev toolchain"
|
2019-02-27 14:22:03 +01:00
|
|
|
SUBPKG="ldns ldns-dev"
|
2018-06-22 20:27:03 +02:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2018-09-02 14:19:23 +02:00
|
|
|
run_configure "$1" --with-drill --without-pyldns --without-pyldnsx \
|
2018-06-22 20:27:03 +02:00
|
|
|
--without-p5-dns-ldns --with-ssl="$TCDIR/$TARGET"
|
|
|
|
|
|
|
|
make -j $NUMJOBS
|
|
|
|
}
|
|
|
|
|
|
|
|
deploy() {
|
2019-03-06 10:03:12 +01:00
|
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
2018-06-22 20:27:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
check_update() {
|
2019-07-07 16:17:16 +02:00
|
|
|
check_update_simple "$URL" "ldns" "tar.gz"
|
2018-06-22 20:27:03 +02:00
|
|
|
}
|