# HG changeset patch # User Hans-G?nter Theisgen # Date 1572360863 -3600 # Node ID bff282a275390fc9273a1615a244540e96a4435f # Parent efd3c9e9724fe1331aa06bcd4a2f1299dac15e68 updated unbound and unbound-dev (1.5.7 -> 1.9.4) diff -r efd3c9e9724f -r bff282a27539 unbound-dev/receipt --- a/unbound-dev/receipt Fri Oct 25 16:35:21 2019 +0100 +++ b/unbound-dev/receipt Tue Oct 29 15:54:23 2019 +0100 @@ -1,20 +1,22 @@ # SliTaz package receipt. PACKAGE="unbound-dev" -VERSION="1.5.7" +VERSION="1.9.4" CATEGORY="development" SHORT_DESC="A validating, recursive, and caching DNS resolver, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" + WEB_SITE="https://www.unbound.net/" -WANTED="unbound" DEPENDS="unbound" +WANTED="unbound" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install//usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib + + cp -a $install//usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib } diff -r efd3c9e9724f -r bff282a27539 unbound/receipt --- a/unbound/receipt Fri Oct 25 16:35:21 2019 +0100 +++ b/unbound/receipt Tue Oct 29 15:54:23 2019 +0100 @@ -1,25 +1,28 @@ # SliTaz package receipt. PACKAGE="unbound" -VERSION="1.5.7" +VERSION="1.9.4" CATEGORY="network" SHORT_DESC="A validating, recursive, and caching DNS resolver." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" +WEB_SITE="https://www.unbound.net/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.unbound.net/" WGET_URL="https://www.unbound.net/downloads/$TARBALL" -CONFIG_FILES="/etc/unbound" DEPENDS="libssl zlib expat" BUILD_DEPENDS="openssl-dev expat-dev" +CONFIG_FILES="/etc/unbound" + # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -28,10 +31,12 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/var/lib/unbound - cp -a $install/etc $fs - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/sbin $fs/usr + mkdir -p $fs/usr/lib + mkdir -p $fs/var/lib/unbound + + cp -a $install/etc $fs + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/sbin $fs/usr } # Post message when installing.