wok view lftp/receipt @ rev 10132

Up: phpldapadmin to 1.2.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 17:23:48 2011 +0000 (2011-05-20)
parents 4bba8256c117
children c6147ebe2b1b
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.2.2"
5 CATEGORY="network"
6 SHORT_DESC="Small but powerful ftp client"
7 MAINTAINER="mimas@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://lftp.yar.ru/"
10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
12 DEPENDS="readline expat gcc-lib-base"
13 BUILD_DEPENDS="readline-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --without-gnutls \
21 --without-openssl &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }