wok-6.x diff exosip/receipt @ rev 9884
airsnort: Fix WEB_SITE. Typo
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue May 17 01:19:59 2011 +0200 (2011-05-17) |
parents | |
children | 297d1504ec1a |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/exosip/receipt Tue May 17 01:19:59 2011 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="exosip" 1.7 +VERSION="3.1.0" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="extended SIP library." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +SOURCE="libeXosip2" 1.12 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://savannah.nongnu.org/projects/exosip/" 1.14 +WGET_URL="http://www.antisip.com/download/exosip2/$TARBALL" 1.15 +DEPENDS="osip openssl" 1.16 +BUILD_DEPENDS="osip-dev openssl-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure --prefix=/usr --infodir=/usr/share/info \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS && 1.24 + make && 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr/lib 1.32 + cp -a $_pkg/usr/bin $fs/usr 1.33 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.34 +}