wok view lftp/receipt @ rev 21740

updated qjson and qjson-dev (0.8.1 -> 0.9.0)
author Hans-G?nter Theisgen
date Fri Jun 14 13:54:44 2019 +0100 (2019-06-14)
parents 3132d67b7e38
children ae377eba9841
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.8.4"
5 CATEGORY="network"
6 SHORT_DESC="Small but powerful ftp client."
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://lftp.yar.ru/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="https://lftp.tech/ftp/$TARBALL"
14 DEPENDS="expat gcc-lib-base gmp gnutls readline"
15 BUILD_DEPENDS="expat-dev gmp-dev gnutls-dev gperf \
16 libgnutls ncurses-dev readline-dev"
18 CROSS="bug: failed at test"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --with-gnutls \
25 --without-openssl \
26 --build=$HOST_SYSTEM \
27 --host=$HOST_SYSTEM &&
28 make -j 1 &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }