# HG changeset patch # User Hans-G?nter Theisgen # Date 1577720680 -3600 # Node ID 3e7ff947f64491bcb1da7aa45fee8ea040aa44fe # Parent de009acdced58ce0f661a5273cd15b2184f482ec updated antinat and antinat-dev (0.90 -> 0.91) diff -r de009acdced5 -r 3e7ff947f644 antinat-dev/receipt --- a/antinat-dev/receipt Mon Dec 30 15:31:22 2019 +0100 +++ b/antinat-dev/receipt Mon Dec 30 16:44:40 2019 +0100 @@ -1,21 +1,21 @@ # SliTaz package receipt. PACKAGE="antinat-dev" -VERSION="0.90" +VERSION="0.91" CATEGORY="development" -SHORT_DESC="Flexible SOCKS server & client library for proxy-based applications, development files." +SHORT_DESC="Flexible SOCKS server and client library for proxy-based applications, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="http://antinat.sourceforge.net/" +DEPENDS="antinat expat-dev" WANTED="antinat" -DEPENDS="antinat expat-dev" - # 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 de009acdced5 -r 3e7ff947f644 antinat/receipt --- a/antinat/receipt Mon Dec 30 15:31:22 2019 +0100 +++ b/antinat/receipt Mon Dec 30 16:44:40 2019 +0100 @@ -1,16 +1,16 @@ # SliTaz package receipt. PACKAGE="antinat" -VERSION="0.90" +VERSION="0.91" CATEGORY="network" -SHORT_DESC="Flexible SOCKS server & client library for proxy-based applications." +SHORT_DESC="Flexible SOCKS server and client library for proxy-based applications." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="http://antinat.sourceforge.net/" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -#WGET_URL="http://www.malsmith.net/download/?obj=$PACKAGE/$VERSION/$PACKAGE-source.tar.bz2" +#WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="http://www.malsmith.net/download/?obj=$PACKAGE/$VERSION/$PACKAGE-source.tar.bz2" DEPENDS="expat" BUILD_DEPENDS="expat-dev" @@ -18,7 +18,10 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --sysconfdir=/etc $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + $CONFIGURE_ARGS && make && make prefix=$DESTDIR/usr install @@ -28,10 +31,14 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/etc - cp $src/etc/antinat.xml $fs/etc + mkdir -p $fs/usr/lib + mkdir -p $fs/etc + + cp $src/etc/antinat.xml $fs/etc chmod 600 $fs/etc/antinat.xml - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/var $fs + + cp -a $install/usr/lib/* $fs/usr/lib + rm $fs/usr/lib/*a + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/var $fs }