wok-next annotate lftp/receipt @ rev 9704
gcc: make it build with cookutils and let tazwok use its functions
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 08 20:03:09 2011 +0200 (2011-05-08) |
parents | e70cbaee772f |
children | bd9d5822afef |
rev | line source |
---|---|
mimas@2027 | 1 # SliTaz package receipt. |
mimas@2027 | 2 |
mimas@2027 | 3 PACKAGE="lftp" |
slaxemulator@9568 | 4 VERSION="4.2.2" |
mimas@2027 | 5 CATEGORY="network" |
mimas@2027 | 6 SHORT_DESC="Small but powerful ftp client" |
mimas@2027 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@5003 | 8 DEPENDS="readline expat gcc-lib-base" |
erjo@4298 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
mimas@2027 | 10 WEB_SITE="http://lftp.yar.ru/" |
mimas@2027 | 11 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL" |
mimas@2027 | 12 |
mimas@2027 | 13 # Rules to configure and make the package. |
mimas@2027 | 14 compile_rules() |
mimas@2027 | 15 { |
mimas@2027 | 16 cd $src |
mimas@2027 | 17 ./configure \ |
mimas@2027 | 18 --without-gnutls \ |
slaxemulator@9068 | 19 --without-openssl && |
pascal@5003 | 20 make && |
slaxemulator@9068 | 21 make install |
mimas@2027 | 22 } |
mimas@2027 | 23 |
mimas@2027 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2027 | 25 genpkg_rules() |
mimas@2027 | 26 { |
mimas@2027 | 27 mkdir -p $fs/usr |
mimas@2027 | 28 cp -a $_pkg/usr/bin $fs/usr |
mimas@2027 | 29 } |
mimas@2027 | 30 |