wok annotate osip/receipt @ rev 22060

created package get-uae
author Hans-G?nter Theisgen
date Thu Oct 24 16:03:15 2019 +0100 (2019-10-24)
parents 5286a067ac76
children ce9f5bda85ac
rev   line source
pascal@5761 1 # SliTaz package receipt.
pascal@5761 2
pascal@5761 3 PACKAGE="osip"
Hans-G?nter@21646 4 VERSION="5.1.0"
pascal@5761 5 CATEGORY="network"
pascal@5761 6 SHORT_DESC="SIP library."
pascal@5761 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15022 8 LICENSE="LGPL"
Hans-G?nter@21646 9 WEB_SITE="https://www.gnu.org/software/osip/"
Hans-G?nter@21646 10
pascal@5761 11 SOURCE="libosip2"
pascal@5761 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@5761 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@5761 14
pascal@5761 15 # Rules to configure and make the package.
pascal@5761 16 compile_rules()
pascal@5761 17 {
Hans-G?nter@21646 18 ./configure \
Hans-G?nter@21646 19 --prefix=/usr \
Hans-G?nter@21646 20 --infodir=/usr/share/info \
Hans-G?nter@21646 21 --mandir=/usr/share/man \
Hans-G?nter@21646 22 $CONFIGURE_ARGS &&
pascal@5761 23 make &&
pascal@15022 24 make DESTDIR=$DESTDIR install
pascal@5761 25 }
pascal@5761 26
pascal@5761 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5761 28 genpkg_rules()
pascal@5761 29 {
pascal@5761 30 mkdir -p $fs/usr/lib
pascal@15022 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@5761 32 }