wok-next view ldns/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents
children f48456621a9d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="ldns"
4 VERSION="1.7.0"
5 CATEGORY="network"
6 SHORT_DESC="Fast DNS library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://www.nlnetlabs.nl/projects/ldns/about/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/basicnet/ldns.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.nlnetlabs.nl/downloads/ldns/$TARBALL"
15 BUILD_DEPENDS="openssl-dev perl"
16 SPLIT="ldns-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 --with-drill \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 ldns)
31 copy @std
32 DEPENDS="openssl"
33 ;;
34 *-dev)
35 copy @dev
36 ;;
37 esac
38 }