wok view exosip/receipt @ rev 7895

automake: fix depends
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Jan 09 13:59:24 2011 +0100 (2011-01-09)
parents
children 297d1504ec1a
line source
1 # SliTaz package receipt.
3 PACKAGE="exosip"
4 VERSION="3.1.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://www.antisip.com/download/exosip2/$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=$PWD/_pkg 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 }