wok view exosip/receipt @ rev 21777

linld: fix strdup (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 11 14:43:21 2019 +0200 (2019-07-11)
parents 380ffe05937a
children 17091bc7c301
line source
1 # SliTaz package receipt.
3 PACKAGE="exosip"
4 VERSION="5.1.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 ./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 $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }