wok view exosip/receipt @ rev 21120

mate-common: automake-1.16 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 19 21:46:06 2019 +0100 (2019-03-19)
parents a9c4c35092b8
children 44d55cb24c23
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 LICENSE="GPL2"
9 SOURCE="libeXosip2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://savannah.nongnu.org/projects/exosip/"
12 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
13 DEPENDS="osip openssl"
14 BUILD_DEPENDS="osip-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }