CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
icu: overlayed to avoid FS#71
[ports/opt-arm.git] / icu / Pkgfile
CommitLineData
b295581a
VM
1# Description: Widely used set of C/C++ libraries providing Unicode and Globalization support.
2# URL: http://www.icu-project.org/
3# Maintainer: Danny Rawlins, crux at romster dot me
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Packager: Younes Hafri, ycrux at club-internet dot fr
6
7name=icu
8version=56.1
9release=1
10source=(http://download.icu-project.org/files/icu4c/$version/icu4c-${version//./_}-src.tgz)
11
12build() {
13 cd icu/source
14 sed -i -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" config/mh-linux
15 ./configure \
16 --prefix=/usr \
17 --disable-samples \
18 --disable-tests
19
20 make
21 make DESTDIR=$PKG install
22
23 rm $PKG/usr/share/icu/$version/license.html
24}