wok-stable rev 5762
Add exosip
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jul 05 11:58:10 2010 +0200 (2010-07-05) |
parents | 71e67ca5d968 |
children | 9016dd9bfdc9 |
files | exosip-dev/receipt exosip/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/exosip-dev/receipt Mon Jul 05 11:58:10 2010 +0200 1.3 @@ -0,0 +1,19 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="exosip-dev" 1.7 +VERSION="3.1.0" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="extended SIP development library." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +WEB_SITE="http://savannah.nongnu.org/projects/exosip/" 1.12 +WANTED="exosip" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + _pkg=$WOK/$WANTED/libeXosip2-$VERSION/_pkg 1.18 + mkdir -p $fs/usr 1.19 + cp -a $_pkg/usr/include $fs/usr 1.20 + cp -a $_pkg/usr/lib $fs/usr 1.21 + rm -rf $fs/usr/lib/*.so* 1.22 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/exosip/receipt Mon Jul 05 11:58:10 2010 +0200 2.3 @@ -0,0 +1,31 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="exosip" 2.7 +VERSION="3.1.0" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="extended SIP library." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +SOURCE="libeXosip2" 2.12 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://savannah.nongnu.org/projects/exosip/" 2.14 +WGET_URL="http://www.antisip.com/download/exosip2/$TARBALL" 2.15 +DEPENDS="osip openssl" 2.16 +BUILD_DEPENDS="osip-dev openssl-dev" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + cd $src 2.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 2.23 + --mandir=/usr/share/man $CONFIGURE_ARGS && 2.24 + make && 2.25 + make DESTDIR=$PWD/_pkg install 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/lib 2.32 + cp -a $_pkg/usr/bin $fs/usr 2.33 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.34 +}