mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 21:00:57 +00:00
35 lines
1.5 KiB
Bash
35 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="78.2"
|
|
TERMUX_PKG_SRCURL=https://github.com/unicode-org/icu/releases/download/release-${TERMUX_PKG_VERSION}/icu4c-${TERMUX_PKG_VERSION}-sources.tgz
|
|
TERMUX_PKG_SHA256=3e99687b5c435d4b209630e2d2ebb79906c984685e78635078b672e03c89df35
|
|
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 -L "https://raw.githubusercontent.com/unicode-org/icu/release-${TERMUX_PKG_VERSION//./-}/LICENSE" -o "$TERMUX_PKG_SRCDIR/LICENSE"
|
|
TERMUX_PKG_SRCDIR+="/source"
|
|
find . -type f -print0 | xargs -0 touch
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
local _GUARD_FILE="lib/libicuuc.so.78"
|
|
if [[ ! -e "${_GUARD_FILE}" ]]; then
|
|
termux_error_exit "file ${_GUARD_FILE} not found."
|
|
fi
|
|
}
|