contrib/icu/Pkgfile

25 lines
583 B
Plaintext
Raw Normal View History

2007-12-16 07:50:06 +01:00
# Description: Widely used set of C/C++ libraries providing Unicode and Globalization support.
# URL: http://www.icu-project.org/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2007-12-16 07:50:06 +01:00
# Packager: Younes Hafri, ycrux at club-internet dot fr
name=icu
2012-04-06 09:19:43 +02:00
version=49.1.1
2007-12-16 07:50:06 +01:00
release=1
source=(http://download.icu-project.org/files/icu4c/$version/icu4c-${version//./_}-src.tgz)
build() {
cd icu/source
2012-04-06 09:19:43 +02:00
./configure \
2007-12-16 07:50:06 +01:00
--prefix=/usr \
2012-04-06 09:19:43 +02:00
--mandir=/usr/man \
--disable-samples \
--disable-tests
2007-12-16 07:50:06 +01:00
make
2012-04-06 09:19:43 +02:00
make DESTDIR=$PKG install
2007-12-16 07:50:06 +01:00
rm $PKG/usr/share/icu/$version/license.html
}