wok-6.x diff exosip/receipt @ 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 | 17091bc7c301 |
children | 508bfd297019 |
line diff
1.1 --- a/exosip/receipt Thu Feb 10 18:04:02 2022 +0000 1.2 +++ b/exosip/receipt Wed Feb 23 07:55:23 2022 +0100 1.3 @@ -1,17 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="exosip" 1.7 -VERSION="5.1.0" 1.8 +VERSION="5.3.0" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="extended SIP library." 1.11 +SHORT_DESC="Extended SIP library." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://savannah.nongnu.org/projects/exosip/" 1.15 + 1.16 SOURCE="libexosip2" 1.17 TARBALL="$SOURCE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://savannah.nongnu.org/projects/exosip/" 1.19 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL" 1.20 -DEPENDS="osip openssl" 1.21 -BUILD_DEPENDS="osip-dev openssl-dev" 1.22 + 1.23 +DEPENDS="openssl osip" 1.24 +BUILD_DEPENDS="openssl-dev osip-dev" 1.25 1.26 # What is the latest version available today? 1.27 current_version() 1.28 @@ -23,16 +25,18 @@ 1.29 # Rules to configure and make the package. 1.30 compile_rules() 1.31 { 1.32 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.33 - --mandir=/usr/share/man $CONFIGURE_ARGS && 1.34 + ./configure \ 1.35 + --prefix=/usr \ 1.36 + --infodir=/usr/share/info \ 1.37 + --mandir=/usr/share/man \ 1.38 + $CONFIGURE_ARGS && 1.39 make && 1.40 - make DESTDIR=$DESTDIR install 1.41 + make install DESTDIR=$DESTDIR 1.42 } 1.43 1.44 # Rules to gen a SliTaz package suitable for Tazpkg. 1.45 genpkg_rules() 1.46 { 1.47 - mkdir -p $fs/usr/lib 1.48 - cp -a $install/usr/bin $fs/usr 1.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.50 + cook_copy_folders bin 1.51 + cook_copy_files *.so* 1.52 }