harfbuzz: Update from 1.6.3 to 1.7.0
[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
FF
3TERMUX_PKG_VERSION=4.8.3
4TERMUX_PKG_SHA256=de7aee451afaa1aa391f7076b5f602922c2da0e05524a8d8fea413eda83cc78b
7ec16dc2 5TERMUX_PKG_SRCURL=https://lftp.tech/ftp/lftp-${TERMUX_PKG_VERSION}.tar.xz
807a23c0
FF
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.
19e8fb19
FF
8TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
9ac_cv_func_dn_expand=no
10--with-openssl
11--with-expat=$TERMUX_PREFIX
12--with-readline=$TERMUX_PREFIX
13"
3f300a10 14TERMUX_PKG_DEPENDS="libexpat, openssl, readline, libutil, libidn"
98c65dca 15TERMUX_PKG_BUILD_DEPENDS="ncurses-dev"
bb27a0ec
FF
16
17termux_step_pre_configure () {
7ce56385 18 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-zlib=$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr"
bb27a0ec 19}