libicu: revbump revdeps(6)

This commit is contained in:
Kevin Williams 2024-04-21 18:26:26 +08:00 committed by Chongyun Lee
parent 63d1ec411f
commit 59362004ab
1 changed files with 15 additions and 1 deletions

View File

@ -3,7 +3,7 @@ TERMUX_PKG_DESCRIPTION="Unofficial Thunderbird email client"
TERMUX_PKG_LICENSE="MPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=115.6.1
TERMUX_PKG_REVISION=1
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=https://ftp.mozilla.org/pub/thunderbird/releases/${TERMUX_PKG_VERSION}/source/thunderbird-${TERMUX_PKG_VERSION}.source.tar.xz
TERMUX_PKG_SHA256=638beb0d2907c6adbe441b7cd371f205728ac65489c04cb29bb40e71ea2846e3
TERMUX_PKG_DEPENDS="ffmpeg, fontconfig, freetype, gdk-pixbuf, glib, gtk3, libandroid-shmem, libandroid-spawn, libc++, libcairo, libevent, libffi, libice, libicu, libjpeg-turbo, libnspr, libnss, libotr, libpixman, libsm, libvpx, libwebp, libx11, libxcb, libxcomposite, libxdamage, libxext, libxfixes, libxrandr, libxtst, pango, pulseaudio, zlib"
@ -20,6 +20,13 @@ termux_step_pre_configure() {
termux_setup_nodejs
termux_setup_rust
# Out of memory when building gkrust
if [ "$TERMUX_DEBUG_BUILD" = false ]; then
case "${TERMUX_ARCH}" in
aarch64|arm|i686|x86_64) RUSTFLAGS+=" -C debuginfo=1" ;;
esac
fi
cargo install cbindgen
sed \
@ -47,6 +54,13 @@ termux_step_configure() {
-e "s|@CARGO_TARGET_NAME@|${CARGO_TARGET_NAME}|" \
$TERMUX_PKG_BUILDER_DIR/mozconfig.cfg > .mozconfig
if [ "$TERMUX_DEBUG_BUILD" = true ]; then
cat >>.mozconfig - <<END
ac_add_options --enable-debug-symbols
ac_add_options --disable-install-strip
END
fi
./mach configure
}