wok rev 24530

updated exosip and exosip-dev (5.1.0 -> 5.3.0)
author Hans-G?nter Theisgen
date Wed Feb 23 07:55:23 2022 +0100 (2022-02-23)
parents f38ee01eaf10
children 508bfd297019
files exosip-dev/receipt exosip/description.txt exosip/receipt
line diff
     1.1 --- a/exosip-dev/receipt	Wed Feb 23 07:34:39 2022 +0100
     1.2 +++ b/exosip-dev/receipt	Wed Feb 23 07:55:23 2022 +0100
     1.3 @@ -1,19 +1,18 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="exosip-dev"
     1.7 -VERSION="5.1.0"
     1.8 +VERSION="5.3.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="extended SIP development library."
    1.11 +SHORT_DESC="Extended SIP library - development files."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://savannah.nongnu.org/projects/exosip/"
    1.15 +WEB_SITE="https://savannah.nongnu.org/projects/exosip/"
    1.16 +
    1.17  WANTED="exosip"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr
    1.23 -	cp -a $install/usr/include $fs/usr
    1.24 -	cp -a $install/usr/lib $fs/usr
    1.25 -	rm -rf $fs/usr/lib/*.so*
    1.26 +	cook_copy_folders	include
    1.27 +	cook_copy_files		*.*a
    1.28  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/exosip/description.txt	Wed Feb 23 07:55:23 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +EXosip is a library that hides the complexity of using the SIP protocol
     2.5 +for mutlimedia session establishement.
     2.6 +This protocol is mainly to be used by VoIP telephony applications
     2.7 +(endpoints or conference server) but might be also usefull for any
     2.8 +application that wish to establish sessions like multiplayer games.
     3.1 --- a/exosip/receipt	Wed Feb 23 07:34:39 2022 +0100
     3.2 +++ b/exosip/receipt	Wed Feb 23 07:55:23 2022 +0100
     3.3 @@ -1,17 +1,19 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="exosip"
     3.7 -VERSION="5.1.0"
     3.8 +VERSION="5.3.0"
     3.9  CATEGORY="network"
    3.10 -SHORT_DESC="extended SIP library."
    3.11 +SHORT_DESC="Extended SIP library."
    3.12  MAINTAINER="pascal.bellard@slitaz.org"
    3.13  LICENSE="GPL2"
    3.14 +WEB_SITE="https://savannah.nongnu.org/projects/exosip/"
    3.15 +
    3.16  SOURCE="libexosip2"
    3.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    3.18 -WEB_SITE="http://savannah.nongnu.org/projects/exosip/"
    3.19  WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
    3.20 -DEPENDS="osip openssl"
    3.21 -BUILD_DEPENDS="osip-dev openssl-dev"
    3.22 +
    3.23 +DEPENDS="openssl osip"
    3.24 +BUILD_DEPENDS="openssl-dev osip-dev"
    3.25  
    3.26  # What is the latest version available today?
    3.27  current_version()
    3.28 @@ -23,16 +25,18 @@
    3.29  # Rules to configure and make the package.
    3.30  compile_rules()
    3.31  {
    3.32 -	./configure --prefix=/usr --infodir=/usr/share/info \
    3.33 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    3.34 +	./configure				\
    3.35 +		--prefix=/usr			\
    3.36 +		--infodir=/usr/share/info	\
    3.37 +		--mandir=/usr/share/man		\
    3.38 +		$CONFIGURE_ARGS &&
    3.39  	make &&
    3.40 -	make DESTDIR=$DESTDIR install
    3.41 +	make install DESTDIR=$DESTDIR
    3.42  }
    3.43  
    3.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.45  genpkg_rules()
    3.46  {
    3.47 -	mkdir -p $fs/usr/lib
    3.48 -	cp -a $install/usr/bin $fs/usr
    3.49 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.50 +	cook_copy_folders	bin
    3.51 +	cook_copy_files		*.so*
    3.52  }