wok-4.x annotate lftp/receipt @ rev 10170
Fixed the last two commits.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 21:49:32 2011 +0000 (2011-05-20) |
parents | 4bba8256c117 |
children | c6147ebe2b1b |
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" |
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" |
mimas@2027 | 11 |
erjo@9918 | 12 DEPENDS="readline expat gcc-lib-base" |
erjo@9918 | 13 BUILD_DEPENDS="readline-dev" |
erjo@9918 | 14 |
mimas@2027 | 15 # Rules to configure and make the package. |
mimas@2027 | 16 compile_rules() |
mimas@2027 | 17 { |
mimas@2027 | 18 cd $src |
mimas@2027 | 19 ./configure \ |
mimas@2027 | 20 --without-gnutls \ |
slaxemulator@9068 | 21 --without-openssl && |
pascal@5003 | 22 make && |
slaxemulator@9068 | 23 make install |
mimas@2027 | 24 } |
mimas@2027 | 25 |
mimas@2027 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2027 | 27 genpkg_rules() |
mimas@2027 | 28 { |
mimas@2027 | 29 mkdir -p $fs/usr |
mimas@2027 | 30 cp -a $_pkg/usr/bin $fs/usr |
mimas@2027 | 31 } |
mimas@2027 | 32 |