wok-6.x annotate sipsak/receipt @ rev 5773
Up busybox (1.17.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jul 06 15:09:01 2010 +0200 (2010-07-06) |
parents | 6b8241a302f7 |
children | 380ffe05937a |
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@1617 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1617 | 9 WEB_SITE="http://sipsak.org/" |
pascal@1617 | 10 WGET_URL="http://download.berlios.de/$PACKAGE/$TARBALL" |
pascal@2441 | 11 DEPENDS="libcrypto gnutls zlib" |
pascal@1617 | 12 BUILD_DEPENDS="libcrypto-dev libcrypto" |
pascal@1617 | 13 |
pascal@1617 | 14 # Rules to configure and make the package. |
pascal@1617 | 15 compile_rules() |
pascal@1617 | 16 { |
pascal@1617 | 17 mv $PACKAGE-0.9.6 $src |
pascal@1617 | 18 cd $src |
pascal@1617 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1617 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1617 | 21 make && |
pascal@1617 | 22 make DESTDIR=$PWD/_pkg 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@1617 | 29 cp -a $_pkg/usr/bin $fs/usr |
pascal@1617 | 30 } |
pascal@1617 | 31 |