wok-current view lftp/receipt @ rev 15245
arpwatch, le lftp: remove wrong error trigger
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Mon Sep 23 13:26:46 2013 +0000 (2013-09-23) | 
| parents | 2b9f96603415 | 
| children | dead8955c3ca | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="lftp"
     4 VERSION="4.4.8"
     5 CATEGORY="network"
     6 SHORT_DESC="Small but powerful ftp client"
     7 MAINTAINER="mimas@slitaz.org"
     8 LICENSE="GPL3"
     9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10 WEB_SITE="http://lftp.yar.ru/"
    11 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
    12 CROSS="bug: failed at test"
    14 DEPENDS="gmp readline expat gnutls gcc-lib-base"
    15 BUILD_DEPENDS="gmp-dev ncurses-dev readline-dev expat-dev gperf gnutls-dev"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	cd $src
    21 	./configure \
    22 		--with-gnutls \
    23 		--without-openssl \
    24 		--build=$HOST_SYSTEM \
    25 		--host=$HOST_SYSTEM &&
    26 	make 2>&1 | grep -v "STRERROR" | grep -v "PERROR" &&
    27 	make install
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	mkdir -p $fs/usr
    34 	cp -a $install/usr/bin $fs/usr
    35 }