wok annotate lftp/receipt @ rev 14019

Up gst-plugins-good (0.10.31)
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 20:02:24 2013 +0100 (2013-02-17)
parents fe622b376126
children a94ccb8c0d25
rev   line source
mimas@2027 1 # SliTaz package receipt.
mimas@2027 2
mimas@2027 3 PACKAGE="lftp"
pascal@13894 4 VERSION="4.4.0"
mimas@2027 5 CATEGORY="network"
mimas@2027 6 SHORT_DESC="Small but powerful ftp client"
mimas@2027 7 MAINTAINER="mimas@slitaz.org"
erjo@4298 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2027 9 WEB_SITE="http://lftp.yar.ru/"
mimas@2027 10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
slaxemulator@12381 11 CROSS="bug: failed at test"
mimas@2027 12
slaxemulator@12381 13 DEPENDS="readline expat gnutls gcc-lib-base"
pascal@12660 14 BUILD_DEPENDS="readline-dev gperf gnutls-dev ncurses-dev"
erjo@9918 15
mimas@2027 16 # Rules to configure and make the package.
mimas@2027 17 compile_rules()
mimas@2027 18 {
mimas@2027 19 cd $src
mimas@2027 20 ./configure \
slaxemulator@12381 21 --with-gnutls \
slaxemulator@10183 22 --without-openssl \
slaxemulator@12381 23 --build=$HOST_SYSTEM \
slaxemulator@12381 24 --host=$HOST_SYSTEM &&
pascal@5003 25 make &&
slaxemulator@9068 26 make install
mimas@2027 27 }
mimas@2027 28
mimas@2027 29 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2027 30 genpkg_rules()
mimas@2027 31 {
mimas@2027 32 mkdir -p $fs/usr
slaxemulator@12381 33 cp -a $install/usr/bin $fs/usr
mimas@2027 34 }
mimas@2027 35