wok view lftp/receipt @ rev 11653

Up apache (2.2.22, security fixes)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 11 10:02:20 2012 +0100 (2012-02-11)
parents bd9d5822afef
children d64fc08c69e5
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.2.3"
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 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }