wok annotate sipsak/receipt @ rev 15774

Add TinyCM - A new content manager for SliTaz
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 08 00:18:35 2014 +0100 (2014-01-08)
parents 380ffe05937a
children 8dd8bab3f0ca
rev   line source
pascal@1617 1 # SliTaz package receipt.
pascal@1617 2
pascal@1617 3 PACKAGE="sipsak"
pascal@1617 4 VERSION="0.9.6-1"
pascal@1617 5 CATEGORY="network"
pascal@1617 6 SHORT_DESC="SIP swiss army knife."
pascal@1617 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@1617 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1617 10 WEB_SITE="http://sipsak.org/"
pascal@1617 11 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL"
pascal@15000 12
pascal@2441 13 DEPENDS="libcrypto gnutls zlib"
pascal@1617 14 BUILD_DEPENDS="libcrypto-dev libcrypto"
pascal@1617 15
pascal@1617 16 # Rules to configure and make the package.
pascal@1617 17 compile_rules()
pascal@1617 18 {
pascal@1617 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1617 20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1617 21 make &&
pascal@15000 22 make DESTDIR=$DESTDIR install
pascal@1617 23 }
pascal@1617 24
pascal@1617 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1617 26 genpkg_rules()
pascal@1617 27 {
pascal@1617 28 mkdir -p $fs/usr
pascal@15000 29 cp -a $install/usr/bin $fs/usr
pascal@1617 30 }
pascal@1617 31