wok view lftp/receipt @ rev 23041

linphone: added build dependency cmake
author Hans-G?nter Theisgen
date Wed Mar 04 14:40:01 2020 +0100 (2020-03-04)
parents ade03e6b76cb
children c60adee9e733
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.9.1"
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 gcc83-lib-base gmp gnutls readline"
15 BUILD_DEPENDS="expat-dev gcc83 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 CC=gcc-83 \
25 CXX=g++-83 \
26 --with-gnutls \
27 --without-openssl \
28 --build=$HOST_SYSTEM \
29 --host=$HOST_SYSTEM &&
30 make -j 1 &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 }