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"
2018-08-01 22:48:28 +02:00
TERMUX_PKG_VERSION = 4.8.4
2018-09-11 22:43:19 +02:00
TERMUX_PKG_REVISION = 1
2018-08-01 22:48:28 +02:00
TERMUX_PKG_SHA256 = 4ebc271e9e5cea84a683375a0f7e91086e5dac90c5d51bb3f169f75386107a62
2016-12-01 14:31:09 +01:00
TERMUX_PKG_SRCURL = https://lftp.tech/ftp/lftp-${ TERMUX_PKG_VERSION } .tar.xz
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.
2017-08-20 22:32:51 +02:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS = "
ac_cv_func_dn_expand = no
--with-openssl
--with-expat= $TERMUX_PREFIX
--with-readline= $TERMUX_PREFIX
"
2018-08-25 16:45:39 +02:00
TERMUX_PKG_DEPENDS = "libexpat, openssl, readline, libutil, libidn2"
2017-09-11 22:08:37 +02:00
TERMUX_PKG_BUILD_DEPENDS = "ncurses-dev"
2016-05-04 14:54:30 +02:00
termux_step_pre_configure ( ) {
2016-09-04 00:45:08 +02:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS += " --with-zlib= $TERMUX_STANDALONE_TOOLCHAIN /sysroot/usr "
2018-06-13 02:12:36 +02:00
if [ " $TERMUX_DEBUG " = = "true" ] ; then
# When doing debug build, -D_FORTIFY_SOURCE=2 gives this error:
# /home/builder/.termux-build/_lib/16-aarch64-21-v3/bin/../sysroot/usr/include/bits/fortify/string.h:79:26: error: use of undeclared identifier '__USE_FORTIFY_LEVEL'
export CFLAGS = ${ CFLAGS /-D_FORTIFY_SOURCE=2/ }
fi
2018-08-03 22:11:51 +02:00
CXXFLAGS += " -DNO_INLINE_GETPASS=1"
2016-05-04 14:54:30 +02:00
}