wok-next annotate ldns/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
rev   line source
al@20621 1 # SliTaz package receipt v2.
al@20621 2
al@20621 3 PACKAGE="ldns"
al@20621 4 VERSION="1.7.0"
al@20621 5 CATEGORY="network"
al@20621 6 SHORT_DESC="Fast DNS library"
al@20621 7 MAINTAINER="al.bobylev@gmail.com"
al@20621 8 LICENSE="BSD"
al@20621 9 WEB_SITE="https://www.nlnetlabs.nl/projects/ldns/about/"
al@21017 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/basicnet/ldns.html"
al@20621 11
al@20621 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20621 13 WGET_URL="http://www.nlnetlabs.nl/downloads/ldns/$TARBALL"
al@20621 14
al@21094 15 COOKOPTS="force-arch" # different configs
al@21094 16
al@20621 17 BUILD_DEPENDS="openssl-dev perl"
al@21020 18 SPLIT="$PACKAGE-dev"
al@20621 19
al@20621 20 compile_rules() {
al@20621 21 ./configure \
al@20621 22 --disable-static \
al@20621 23 --with-drill \
al@20621 24 $CONFIGURE_ARGS &&
al@20621 25 fix libtool &&
al@20621 26 make &&
al@20621 27 make install
al@20621 28 }
al@20621 29
al@20621 30 genpkg_rules() {
al@20621 31 case $PACKAGE in
al@20621 32 ldns)
al@20621 33 copy @std
al@20621 34 DEPENDS="openssl"
al@20621 35 ;;
al@20621 36 *-dev)
al@20621 37 copy @dev
al@20621 38 ;;
al@20621 39 esac
al@20621 40 }