wok view osip/receipt @ rev 21653

Up exosip (5.1.0), siproxd (0.8.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 30 17:55:07 2019 +0200 (2019-05-30)
parents 5286a067ac76
children ce9f5bda85ac
line source
1 # SliTaz package receipt.
3 PACKAGE="osip"
4 VERSION="5.1.0"
5 CATEGORY="network"
6 SHORT_DESC="SIP library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL"
9 WEB_SITE="https://www.gnu.org/software/osip/"
11 SOURCE="libosip2"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }