wok view osip/receipt @ rev 20205
Up busybox (1.18.1)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Feb 20 18:10:43 2018 +0100 (2018-02-20) | 
| parents | e3212c0ae480 | 
| children | 797cb3b8865a | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="osip"
     4 VERSION="3.6.0"
     5 CATEGORY="network"
     6 SHORT_DESC="SIP library."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="LGPL"
     9 SOURCE="libosip2"
    10 TARBALL="$SOURCE-$VERSION.tar.gz"
    11 WEB_SITE="http://www.gnu.org/software/osip/osip.html"
    12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure --prefix=/usr --infodir=/usr/share/info \
    19 	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    20 	make &&
    21 	make DESTDIR=$DESTDIR install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/usr/lib
    28 	cp -a $install/usr/lib/*.so* $fs/usr/lib
    29 }