# HG changeset patch # User Hans-G?nter Theisgen # Date 1557063155 -3600 # Node ID 54e6c6e354d11a467fe299acab39f75ba7b37947 # Parent f261fa1783f96769ad43eea7449f68eb31ba1510 updated neon and neon-dev (0.29.3 -> 0.30.2) diff -r f261fa1783f9 -r 54e6c6e354d1 neon-dev/receipt --- a/neon-dev/receipt Sun May 05 14:20:50 2019 +0100 +++ b/neon-dev/receipt Sun May 05 14:32:35 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="neon-dev" -VERSION="0.29.3" +VERSION="0.30.2" CATEGORY="development" -SHORT_DESC="Neon HTTP and WebDAV client library" +SHORT_DESC="Neon HTTP and WebDAV client library - development files." MAINTAINER="lehswe@gmail.com" LICENSE="GPL2" WEB_SITE="http://www.webdav.org/neon" -WANTED="neon" DEPENDS="pkg-config" +WANTED="neon" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r f261fa1783f9 -r 54e6c6e354d1 neon/receipt --- a/neon/receipt Sun May 05 14:20:50 2019 +0100 +++ b/neon/receipt Sun May 05 14:32:35 2019 +0100 @@ -1,29 +1,31 @@ # SliTaz package receipt. PACKAGE="neon" -VERSION="0.29.3" +VERSION="0.30.2" CATEGORY="development" -SHORT_DESC="Neon HTTP and WebDAV client library" +TAGS="http webdav" +SHORT_DESC="Neon HTTP and WebDAV client library." MAINTAINER="lehswe@gmail.com" LICENSE="GPL2" +WEB_SITE="http://www.webdav.org/neon" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.webdav.org/neon" WGET_URL="http://www.webdav.org/neon/$TARBALL" -TAGS="http webdav" -DEPENDS="libssl zlib libkrb5 libcomerr3 expat" -BUILD_DEPENDS="zlib-dev libxml2-dev expat-dev openssl-dev" +DEPENDS="expat libcomerr3 libkrb5 libssl zlib" +BUILD_DEPENDS="expat-dev libxml2-dev openssl-dev zlib-dev" # Rules to configure and make the package. compile_rules() { - cd $src - # SOCK_CLOEXEC needs linux 2.6.27+ - #sed -i 's/| SOCK_CLOEXEC//' src/ne_socket.c - ./configure --prefix=/usr --infodir=/usr/share/info \ - --with-ssl=openssl --mandir=/usr/share/man \ - --enable-shared --disable-static \ - $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --with-ssl=openssl \ + --mandir=/usr/share/man \ + --enable-shared \ + --disable-static \ + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } @@ -32,8 +34,7 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr + + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr } - -