wok annotate lftp/receipt @ rev 9233
Fix a typo in icetea6-jdk
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Mar 12 05:22:21 2011 +0100 (2011-03-12) |
parents | 0fc3e4faa171 |
children | e70cbaee772f |
rev | line source |
---|---|
mimas@2027 | 1 # SliTaz package receipt. |
mimas@2027 | 2 |
mimas@2027 | 3 PACKAGE="lftp" |
slaxemulator@9068 | 4 VERSION="4.2.0" |
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 |