# HG changeset patch # User Hans-G?nter Theisgen # Date 1645599323 -3600 # Node ID 237fb52f1080d220e5e4c233f37d061e28952918 # Parent f38ee01eaf10a94e242432857e128ae0682eed7c updated exosip and exosip-dev (5.1.0 -> 5.3.0) diff -r f38ee01eaf10 -r 237fb52f1080 exosip-dev/receipt --- a/exosip-dev/receipt Wed Feb 23 07:34:39 2022 +0100 +++ b/exosip-dev/receipt Wed Feb 23 07:55:23 2022 +0100 @@ -1,19 +1,18 @@ # SliTaz package receipt. PACKAGE="exosip-dev" -VERSION="5.1.0" +VERSION="5.3.0" CATEGORY="development" -SHORT_DESC="extended SIP development library." +SHORT_DESC="Extended SIP library - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://savannah.nongnu.org/projects/exosip/" +WEB_SITE="https://savannah.nongnu.org/projects/exosip/" + WANTED="exosip" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib $fs/usr - rm -rf $fs/usr/lib/*.so* + cook_copy_folders include + cook_copy_files *.*a } diff -r f38ee01eaf10 -r 237fb52f1080 exosip/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/exosip/description.txt Wed Feb 23 07:55:23 2022 +0100 @@ -0,0 +1,5 @@ +EXosip is a library that hides the complexity of using the SIP protocol +for mutlimedia session establishement. +This protocol is mainly to be used by VoIP telephony applications +(endpoints or conference server) but might be also usefull for any +application that wish to establish sessions like multiplayer games. diff -r f38ee01eaf10 -r 237fb52f1080 exosip/receipt --- a/exosip/receipt Wed Feb 23 07:34:39 2022 +0100 +++ b/exosip/receipt Wed Feb 23 07:55:23 2022 +0100 @@ -1,17 +1,19 @@ # SliTaz package receipt. PACKAGE="exosip" -VERSION="5.1.0" +VERSION="5.3.0" CATEGORY="network" -SHORT_DESC="extended SIP library." +SHORT_DESC="Extended SIP library." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://savannah.nongnu.org/projects/exosip/" + SOURCE="libexosip2" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://savannah.nongnu.org/projects/exosip/" WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" -DEPENDS="osip openssl" -BUILD_DEPENDS="osip-dev openssl-dev" + +DEPENDS="openssl osip" +BUILD_DEPENDS="openssl-dev osip-dev" # What is the latest version available today? current_version() @@ -23,16 +25,18 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }