mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
33 lines
811 B
Bash
33 lines
811 B
Bash
SUMMARY="Unicode Common Locale Data Repository"
|
|
DESCRIPTION="The Unicode Common Locale Data Repository(CLDR) provides key \
|
|
building blocks for software to support the world's languages, with the \
|
|
largest and most extensive standard repository for locale data avaliable."
|
|
HOMEPAGE="https://cldr.unicode.org"
|
|
COPYRIGHT="1991-2023 Unicode Inc."
|
|
LICENSE="unicode"
|
|
REVISION="1"
|
|
SOURCE_URI="https://unicode.org/Public/cldr/43/cldr-common-$portVersion.zip"
|
|
SOURCE_FILENAME="unicode-cldr-$portVersion.zip"
|
|
CHECKSUM_SHA256="7800dadb6a11e06ba1475f8c2830aa87e0749ed441c953d8deea60b4baeef592"
|
|
SOURCE_DIR="common"
|
|
|
|
ARCHITECTURES="any"
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
unicode_cldr = $portVersion
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
true
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
DATADIR=$dataDir/unicode/cldr/common
|
|
mkdir -p ${DATADIR}
|
|
|
|
cp -r * ${DATADIR}
|
|
}
|