#Maintainer: Thorsten Muehlfelder <thenktor(at)gmx.de>

pkgname=icu
pkgver=4.6
pkgrel=1tm
source=("http://download.icu-project.org/files/icu4c/4.6/icu4c-4_6-src.tgz")
url="http://icu-project.org"
docs=('license.html' 'readme.html')

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"$pkgname International Components for Unicode"
"ICU is a mature, widely used set of C/C++ and Java libraries for"
"Unicode support, software internationalization and globalization"
"(i18n/g11n). It grew out of the JDK 1.1 internationalization APIs,"
"which the ICU team contributed, and the project continues to be"
"developed for the most advanced Unicode/i18n support. ICU is widely"
"portable and gives applications the same results on all  platforms and"
"between C/C++ and Java software."
)

build() {
	cd $startdir/src/${pkgname}/source
	./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --sysconfdir=/etc \
		--disable-static
	make -j $numjobs
	make DESTDIR=/$startdir/pkg install
}