lftp: Update from 4.8.0 to 4.8.1
[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.8.1
4 TERMUX_PKG_SHA256=e770daa5592ad21bd0b8a8915a0f4fdc2e15dec6c69e754a870ad9c18be57b27
5 TERMUX_PKG_SRCURL=https://lftp.tech/ftp/lftp-${TERMUX_PKG_VERSION}.tar.xz
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="
9 ac_cv_func_dn_expand=no
10 --with-openssl
11 --with-expat=$TERMUX_PREFIX
12 --with-readline=$TERMUX_PREFIX
13 "
14 TERMUX_PKG_DEPENDS="libexpat, openssl, readline, libutil, libidn"
15 TERMUX_PKG_BUILD_DEPENDS="ncurses-dev"
16
17 termux_step_pre_configure () {
18 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-zlib=$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr"
19 }