forked from ports/contrib
15 lines
381 B
Plaintext
15 lines
381 B
Plaintext
|
# Description: Unicode Common Locale Data Repository
|
||
|
# URL: http://cldr.unicode.org/
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
|
||
|
name=unicode-cldr
|
||
|
version=38.0
|
||
|
release=1
|
||
|
source=(https://unicode.org/Public/cldr/${version%.*}/cldr-common-$version.zip)
|
||
|
|
||
|
build() {
|
||
|
cd common
|
||
|
install -dm755 $PKG/usr/share/unicode/cldr/common
|
||
|
cp -r * $PKG/usr/share/unicode/cldr/common/
|
||
|
}
|