wok-6.x diff knot/receipt @ rev 23834
Up alsa-lib (1.2.2), apache-ant (1.10.8), apache (2.4.43), lcms2 (2.10), libexit (0.6.22)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 01 09:10:42 2020 +0000 (2020-06-01) |
parents | 3132d67b7e38 |
children | 453c249b6219 |
line diff
1.1 --- a/knot/receipt Thu Dec 13 11:00:12 2018 +0100 1.2 +++ b/knot/receipt Mon Jun 01 09:10:42 2020 +0000 1.3 @@ -1,27 +1,30 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="knot" 1.7 -VERSION="2.5.2" 1.8 +VERSION="2.9.2" 1.9 CATEGORY="network" 1.10 SHORT_DESC="High-performance authoritative-only DNS server." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="GPL3" 1.13 +WEB_SITE="https://www.knot-dns.cz/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.16 -WEB_SITE="https://www.knot-dns.cz/" 1.17 WGET_URL="https://secure.nic.cz/files/knot-dns/$TARBALL" 1.18 1.19 -DEPENDS="gnutls nettle liburcu libedit" 1.20 -BUILD_DEPENDS="gnutls-dev libgnutls nettle-dev liburcu-dev libedit-dev" 1.21 +DEPENDS="gnutls libedit liburcu nettle" 1.22 +BUILD_DEPENDS="gnutls-dev nettle-dev libedit-dev libgnutls liburcu-dev" 1.23 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - sed -i 's|__sync_fetch_and_|// &|' src/knot/nameserver/query_module.c # FIXME 1.28 - ./configure \ 1.29 - --prefix=/usr \ 1.30 - --sysconfdir=/etc \ 1.31 - --localstatedir=/var \ 1.32 - $CONFIGURE_ARGS 1.33 + # 2.9.2 no longer applicable 1.34 +# sed -i 's|__sync_fetch_and_|// &|' src/knot/nameserver/query_module.c # FIXME 1.35 + 1.36 + ./configure \ 1.37 + --prefix=/usr \ 1.38 + --sysconfdir=/etc \ 1.39 + --localstatedir=/var \ 1.40 + $CONFIGURE_ARGS && 1.41 make && 1.42 make DESTDIR=$DESTDIR install 1.43 } 1.44 @@ -30,7 +33,8 @@ 1.45 genpkg_rules() 1.46 { 1.47 mkdir -p $fs/usr/lib 1.48 - cp -a $install/etc $fs 1.49 - cp -a $install/var $fs 1.50 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.51 + 1.52 + cp -a $install/etc $fs 1.53 + cp -a $install/var $fs 1.54 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.55 }