wok-next view lftp/receipt @ rev 20023

Up lftp (4.8.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 22 12:23:02 2017 +0200 (2017-10-22)
parents dead8955c3ca
children 0ec6086e21d6
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.8.3"
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="${WEB_SITE}ftp/$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 ./configure \
21 --with-gnutls \
22 --without-openssl \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }