flex: Patch Makefile.in instead of Makefile.am
[termux-packages] / packages / lftp / build.sh
CommitLineData
7ec16dc2 1TERMUX_PKG_HOMEPAGE=https://lftp.tech/
59f0d218 2TERMUX_PKG_DESCRIPTION="FTP/HTTP client and file transfer program"
f348551b 3TERMUX_PKG_VERSION=4.8.3
e1cf4eea 4TERMUX_PKG_REVISION=2
f348551b 5TERMUX_PKG_SHA256=de7aee451afaa1aa391f7076b5f602922c2da0e05524a8d8fea413eda83cc78b
7ec16dc2 6TERMUX_PKG_SRCURL=https://lftp.tech/ftp/lftp-${TERMUX_PKG_VERSION}.tar.xz
807a23c0
FF
7# (1) Android has dn_expand, but lftp assumes that dn_skipname then exists, which it does not on android.
8# (2) Use --with-openssl to use openssl instead of gnutls.
19e8fb19
FF
9TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
10ac_cv_func_dn_expand=no
11--with-openssl
12--with-expat=$TERMUX_PREFIX
13--with-readline=$TERMUX_PREFIX
14"
3f300a10 15TERMUX_PKG_DEPENDS="libexpat, openssl, readline, libutil, libidn"
98c65dca 16TERMUX_PKG_BUILD_DEPENDS="ncurses-dev"
bb27a0ec
FF
17
18termux_step_pre_configure () {
7ce56385 19 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-zlib=$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr"
bb27a0ec 20}