wok view lftp/receipt @ rev 9404

Up: slitaz-mercurial-style to 1.0.7. You didn't tag. Also no need for high jumps since it will make everything else 2.0.x for linearer versioning.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Mar 27 18:50:59 2011 +0000 (2011-03-27)
parents 0fc3e4faa171
children e70cbaee772f
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.2.0"
5 CATEGORY="network"
6 SHORT_DESC="Small but powerful ftp client"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="readline expat gcc-lib-base"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://lftp.yar.ru/"
11 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --without-gnutls \
19 --without-openssl &&
20 make &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }