mirror of
https://github.com/termux/termux-packages.git
synced 2025-09-20 07:39:42 +00:00
- Fixes #24070 - makes the `mozconfig.cfg`, `build.sh` and patches of `thunderbird` very similar to `firefox`, except for places where `thunderbird` is different - `disable-systray-x86_64.patch`: fixes the build of `thunderbird` 136.0.1 for x86_64 Termux specifically. has been tested at runtime on a bare metal 64-bit Android-x86 device, and behaves as expected (uniform behavior with other architectures of Termux `thunderbird` 136.0.1) - `toolbar-based-custom-compose-window-width-for-ralfwerner.patch`: hardcoded custom dimensions of the edit window formatting toolbar to provide a workaround for edit window minimum text wrapping width high-dpi-scaling low-resolution situations in HTML mode while preserving the formatting toolbar functionality - `icu-22132.patch`: fixes a bug in `libicu` that has been happening for a long time, which causes these features of `thunderbird` to begin functioning: - Search Bar - Address Book - Customize Toolbars - Calendar - Tasks - Chat - Settings Button - Hamburger Button
36 lines
1.5 KiB
Bash
36 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://site.icu-project.org/home
|
|
TERMUX_PKG_DESCRIPTION='International Components for Unicode library'
|
|
TERMUX_PKG_LICENSE="custom"
|
|
# We override TERMUX_PKG_SRCDIR termux_step_post_get_source so need to do
|
|
# this hack to be able to find the license file.
|
|
TERMUX_PKG_LICENSE_FILE="../LICENSE"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# Never forget to always bump revision of reverse dependencies and rebuild them
|
|
# when bumping "major" version.
|
|
TERMUX_PKG_VERSION="77.1"
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/unicode-org/icu/releases/download/release-${TERMUX_PKG_VERSION//./-}/icu4c-${TERMUX_PKG_VERSION//./_}-src.tgz
|
|
TERMUX_PKG_SHA256=588e431f77327c39031ffbb8843c0e3bc122c211374485fa87dc5f3faff24061
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_METHOD=repology
|
|
TERMUX_PKG_DEPENDS="libc++"
|
|
TERMUX_PKG_BREAKS="libicu-dev"
|
|
TERMUX_PKG_REPLACES="libicu-dev"
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS="--disable-samples --disable-tests"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-samples --disable-tests --with-cross-build=$TERMUX_PKG_HOSTBUILD_DIR"
|
|
|
|
termux_step_post_get_source() {
|
|
rm $TERMUX_PKG_SRCDIR/LICENSE
|
|
curl -o $TERMUX_PKG_SRCDIR/LICENSE -L https://raw.githubusercontent.com/unicode-org/icu/release-${TERMUX_PKG_VERSION//./-}/LICENSE
|
|
TERMUX_PKG_SRCDIR+="/source"
|
|
find . -type f | xargs touch
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
local _GUARD_FILE="lib/libicuuc.so.77"
|
|
if [ ! -e "${_GUARD_FILE}" ]; then
|
|
termux_error_exit "Error: file ${_GUARD_FILE} not found."
|
|
fi
|
|
}
|