wok view lftp/receipt @ rev 12077

fix /usr/bin/git-citool in correct link /usr/lib/git-core/git-citool
author Stanislas Leduc <shann@slitaz.org>
date Fri Mar 09 10:16:47 2012 +0100 (2012-03-09)
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 }