wok view exosip/receipt @ rev 12754

Up ecm (1.03)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 11 14:55:49 2012 +0200 (2012-05-11)
parents f52a870b984c
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="exosip"
4 VERSION="3.6.0"
5 CATEGORY="network"
6 SHORT_DESC="extended SIP library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="libeXosip2"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://savannah.nongnu.org/projects/exosip/"
11 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
12 DEPENDS="osip openssl"
13 BUILD_DEPENDS="osip-dev openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }