wok annotate 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
rev   line source
mimas@2027 1 # SliTaz package receipt.
mimas@2027 2
mimas@2027 3 PACKAGE="lftp"
slaxemulator@10183 4 VERSION="4.2.3"
mimas@2027 5 CATEGORY="network"
mimas@2027 6 SHORT_DESC="Small but powerful ftp client"
mimas@2027 7 MAINTAINER="mimas@slitaz.org"
erjo@4298 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2027 9 WEB_SITE="http://lftp.yar.ru/"
mimas@2027 10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
mimas@2027 11
erjo@9918 12 DEPENDS="readline expat gcc-lib-base"
erjo@9918 13 BUILD_DEPENDS="readline-dev"
erjo@9918 14
mimas@2027 15 # Rules to configure and make the package.
mimas@2027 16 compile_rules()
mimas@2027 17 {
mimas@2027 18 cd $src
mimas@2027 19 ./configure \
mimas@2027 20 --without-gnutls \
slaxemulator@10183 21 --without-openssl \
slaxemulator@10183 22 $CONFIGURE_ARGS &&
pascal@5003 23 make &&
slaxemulator@9068 24 make install
mimas@2027 25 }
mimas@2027 26
mimas@2027 27 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2027 28 genpkg_rules()
mimas@2027 29 {
mimas@2027 30 mkdir -p $fs/usr
mimas@2027 31 cp -a $_pkg/usr/bin $fs/usr
mimas@2027 32 }
mimas@2027 33