opt/icu/Pkgfile

30 lines
785 B
Plaintext
Raw Normal View History

2012-10-30 22:47:36 +01:00
# Description: Widely used set of C/C++ libraries providing Unicode and Globalization support.
# URL: http://www.icu-project.org/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2012-10-30 22:47:36 +01:00
name=icu
version=65.1
2012-10-30 22:47:36 +01:00
release=1
source=(https://github.com/unicode-org/icu/releases/download/release-${version//./-}/icu4c-${version/./_}-src.tgz
icu-65.1-initialized-buffer-uloc_getKeywordValue.patch)
2012-10-30 22:47:36 +01:00
build() {
cd icu/source
# https://unicode-org.atlassian.net/browse/ICU-20884
patch -p2 -d .. -i $SRC/icu-65.1-initialized-buffer-uloc_getKeywordValue.patch
2016-03-18 11:26:33 +01:00
# icu tries to use clang by default
[ "$CC" ] || export CC=gcc
[ "$CXX" ] || export CXX=g++
2012-10-30 22:47:36 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
2012-10-30 22:47:36 +01:00
--disable-samples \
--disable-tests
make
make -j1 DESTDIR=$PKG install
2012-10-30 22:47:36 +01:00
}