lftp: Build with gcc for now
[termux-packages] / packages / lftp / build.sh
1 TERMUX_PKG_HOMEPAGE=https://lftp.tech/
2 TERMUX_PKG_DESCRIPTION="FTP/HTTP client and file transfer program"
3 TERMUX_PKG_VERSION=4.7.5
4 TERMUX_PKG_SRCURL=https://lftp.tech/ftp/lftp-${TERMUX_PKG_VERSION}.tar.xz
5 TERMUX_PKG_SHA256=53b5c5eba2e38b418bcf451776f2df596050dff4db90ab4ea73d872f8b1fd0d8
6 # (1) Android has dn_expand, but lftp assumes that dn_skipname then exists, which it does not on android.
7 # (2) Use --with-openssl to use openssl instead of gnutls.
8 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_func_dn_expand=no --with-openssl --with-expat=$TERMUX_PREFIX"
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-readline=$TERMUX_PREFIX"
10 TERMUX_PKG_DEPENDS="libexpat, openssl, readline, libutil, libidn"
11 # "xmalloc.c:(.text+0x26c): undefined reference to `__muloti4'":
12 TERMUX_PKG_CLANG=no
13
14 termux_step_pre_configure () {
15 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-zlib=$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr"
16
17 # We have patched an m4 file.
18 cd $TERMUX_PKG_SRCDIR
19 aclocal
20 autoconf
21 }