# HG changeset patch # User Hans-G?nter Theisgen # Date 1648214833 -3600 # Node ID 8d89d0298bcafd0da29824f55cfa08043507b1e2 # Parent 909b36547bf2ee00207f06a0d4448dee6394d089 updated libupnp and libupnp-dev (1.12.0 -> 1.14.12) diff -r 909b36547bf2 -r 8d89d0298bca libupnp-dev/receipt --- a/libupnp-dev/receipt Fri Mar 25 09:14:23 2022 +0000 +++ b/libupnp-dev/receipt Fri Mar 25 14:27:13 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="libupnp-dev" -VERSION="1.12.0" +VERSION="1.14.12" CATEGORY="development" SHORT_DESC="LibUpnP development files." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pupnp.sourceforge.io/" +WEB_SITE="https://github.com/pupnp/pupnp" DEPENDS="libupnp pkg-config" WANTED="libupnp" @@ -14,9 +14,5 @@ # 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 + get_dev_files } diff -r 909b36547bf2 -r 8d89d0298bca libupnp/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libupnp/description.txt Fri Mar 25 14:27:13 2022 +0100 @@ -0,0 +1,5 @@ +UPnP is an architecture that enables discovery, event notification, +and control of devices on a network, independent of operating system, +programming language, or physical network connection. +UPnP is based on common Internet standards and specifications such as +TCP/IP, HTTP, and XML. diff -r 909b36547bf2 -r 8d89d0298bca libupnp/receipt --- a/libupnp/receipt Fri Mar 25 09:14:23 2022 +0000 +++ b/libupnp/receipt Fri Mar 25 14:27:13 2022 +0100 @@ -1,18 +1,18 @@ # SliTaz package receipt. PACKAGE="libupnp" -VERSION="1.12.0" +VERSION="1.14.12" CATEGORY="network" SHORT_DESC="The portable Universal Plug and Play (UPnP)." MAINTAINER="pankso@slitaz.org" LICENSE="BSD" -WEB_SITE="https://pupnp.sourceforge.io/" +WEB_SITE="https://github.com/pupnp/pupnp" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="$SF_MIRROR/pupnp/$TARBALL" +WGET_URL="https://github.com/pupnp/pupnp/releases/download/release-$VERSION/$TARBALL" DEPENDS="libxml2" -BUILD_DEPENDS="libxml2-dev libpthread-stubs" +BUILD_DEPENDS="libpthread-stubs libxml2-dev" # What is the latest version available today? current_version() @@ -28,13 +28,12 @@ --prefix=/usr \ --disable-largefile \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }