wok rev 24845

updated libupnp and libupnp-dev (1.12.0 -> 1.14.12)
author Hans-G?nter Theisgen
date Fri Mar 25 14:27:13 2022 +0100 (2022-03-25)
parents 909b36547bf2
children 72a3c94f32c8
files libupnp-dev/receipt libupnp/description.txt libupnp/receipt
line diff
     1.1 --- a/libupnp-dev/receipt	Fri Mar 25 09:14:23 2022 +0000
     1.2 +++ b/libupnp-dev/receipt	Fri Mar 25 14:27:13 2022 +0100
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libupnp-dev"
     1.7 -VERSION="1.12.0"
     1.8 +VERSION="1.14.12"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="LibUpnP development files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="BSD"
    1.13 -WEB_SITE="https://pupnp.sourceforge.io/"
    1.14 +WEB_SITE="https://github.com/pupnp/pupnp"
    1.15  
    1.16  DEPENDS="libupnp pkg-config"
    1.17  WANTED="libupnp"
    1.18 @@ -14,9 +14,5 @@
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib
    1.23 -
    1.24 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.26 -	cp -a $install/usr/include		$fs/usr
    1.27 +	get_dev_files
    1.28  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libupnp/description.txt	Fri Mar 25 14:27:13 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +UPnP is an architecture that enables discovery, event notification,
     2.5 +and control of devices on a network, independent of operating system,
     2.6 +programming language, or physical network connection.
     2.7 +UPnP is based on common Internet standards and specifications such as
     2.8 +TCP/IP, HTTP, and XML.
     3.1 --- a/libupnp/receipt	Fri Mar 25 09:14:23 2022 +0000
     3.2 +++ b/libupnp/receipt	Fri Mar 25 14:27:13 2022 +0100
     3.3 @@ -1,18 +1,18 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libupnp"
     3.7 -VERSION="1.12.0"
     3.8 +VERSION="1.14.12"
     3.9  CATEGORY="network"
    3.10  SHORT_DESC="The portable Universal Plug and Play (UPnP)."
    3.11  MAINTAINER="pankso@slitaz.org"
    3.12  LICENSE="BSD"
    3.13 -WEB_SITE="https://pupnp.sourceforge.io/"
    3.14 +WEB_SITE="https://github.com/pupnp/pupnp"
    3.15  
    3.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.17 -WGET_URL="$SF_MIRROR/pupnp/$TARBALL"
    3.18 +WGET_URL="https://github.com/pupnp/pupnp/releases/download/release-$VERSION/$TARBALL"
    3.19  
    3.20  DEPENDS="libxml2"
    3.21 -BUILD_DEPENDS="libxml2-dev libpthread-stubs"
    3.22 +BUILD_DEPENDS="libpthread-stubs libxml2-dev"
    3.23  
    3.24  # What is the latest version available today?
    3.25  current_version()
    3.26 @@ -28,13 +28,12 @@
    3.27  		--prefix=/usr		\
    3.28  		--disable-largefile	\
    3.29  		$CONFIGURE_ARGS &&
    3.30 -	make -j 1 &&
    3.31 -	make DESTDIR=$DESTDIR install
    3.32 +	make &&
    3.33 +	make install DESTDIR=$DESTDIR
    3.34  }
    3.35  
    3.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.37  genpkg_rules()
    3.38  {
    3.39 -	mkdir -p $fs/usr/lib
    3.40 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.41 +	cook_copy_files	*.so*
    3.42  }