wok view lftp/receipt @ rev 10788

gtkdialog: remove example and desktop file
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 01 19:42:36 2011 +0200 (2011-06-01)
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 }