Let users install a smaller but English-only ICU lib (#612)

pull/617/head 1.5.33
Michele Locati 2022-07-15 17:13:32 +02:00 committed by GitHub
parent b8195286b3
commit 9a11492f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -371,6 +371,7 @@ Here's the list of all the supported environment variables:
| event | `IPE_EVENT_NAMESPACE=`... | By default the `event` classes are defined in the root namespace. You can use this environment variable to specify a custom namespace |
| gd | `IPE_GD_WITHOUTAVIF=1` | Since PHP 8.1, gd supports the AVIF format. Enabling it requires compiling libaom/libdav1d/libyuv/libavif, which is time-consuming. You can disable AVIF support by setting this environment variable |
| oci8 & pdo_oci | `IPE_INSTANTCLIENT_BASIC=1` | The oci8 and pdo_oci PHP extensions require [Oracle Instant Client](https://www.oracle.com/database/technologies/instant-client.html). In order to save disk space, we install the Basic Lite version: if you want to install the Basic (non-lite) version simply set this environment variable |
| http, intl, mongodb | `IPE_ICU_EN_ONLY=1` | Some extensions require the ICU library, use this flag to install a smaller, but English-only, ICU library on Alpine 3.16 and later |
## Special requirements

View File

@ -610,7 +610,12 @@ buildRequiredPackageLists() {
fi
buildRequiredPackageLists_icuPersistent=''
if test $DISTRO_MAJMIN_VERSION -ge 316; then
case "${IPE_ICU_EN_ONLY:-}" in
1 | y* | Y*) ;;
*)
buildRequiredPackageLists_icuPersistent='icu-data-full'
;;
esac
fi
;;
debian@9)