termux-packages/packages/lftp/build.sh

24 lines
870 B
Bash
Raw Normal View History

2016-12-01 14:31:09 +01:00
TERMUX_PKG_HOMEPAGE=https://lftp.tech/
2015-06-13 01:03:31 +02:00
TERMUX_PKG_DESCRIPTION="FTP/HTTP client and file transfer program"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=4.9.2
2016-12-01 14:31:09 +01:00
TERMUX_PKG_SRCURL=https://lftp.tech/ftp/lftp-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=c517c4f4f9c39bd415d7313088a2b1e313b2d386867fe40b7692b83a20f0670d
2019-06-19 23:14:02 +02:00
TERMUX_PKG_DEPENDS="libandroid-support, libc++, libexpat, libiconv, openssl, readline, libidn2, zlib"
2015-06-28 23:14:40 +02:00
# (1) Android has dn_expand, but lftp assumes that dn_skipname then exists, which it does not on android.
# (2) Use --with-openssl to use openssl instead of gnutls.
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
2019-12-21 18:24:10 +01:00
ac_cv_header_glob_h=no
ac_cv_func_dn_expand=no
--with-openssl
--with-expat=$TERMUX_PREFIX
--with-readline=$TERMUX_PREFIX
--with-zlib=$TERMUX_PREFIX
"
termux_step_pre_configure() {
CXXFLAGS+=" -DNO_INLINE_GETPASS=1"
}