opt/icu/Pkgfile

31 lines
746 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
# Packager: Younes Hafri, ycrux at club-internet dot fr
name=icu
version=58.2
2012-10-30 22:47:36 +01:00
release=1
source=(http://download.icu-project.org/files/icu4c/$version/icu4c-${version//./_}-src.tgz
icu-58.1-remove-bashisms.patch
icu-58.1-iterator.patch)
2012-10-30 22:47:36 +01:00
build() {
cd icu/source
patch -p1 -i $SRC/icu-58.1-remove-bashisms.patch
patch -p1 -i $SRC/icu-58.1-iterator.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 \
--disable-samples \
--disable-tests
make
make DESTDIR=$PKG install
}