83 lines
2.1 KiB
Text
83 lines
2.1 KiB
Text
# Template build file for 'icu'.
|
|
pkgname=icu
|
|
version=49.1.2
|
|
_distver="49_1_2"
|
|
revision=3
|
|
wrksrc=icu
|
|
build_wrksrc=source
|
|
short_desc="Robust and full-featured Unicode services"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.icu-project.org/"
|
|
license="ICU License /usr/share/licenses/icu/license.html"
|
|
distfiles="http://download.icu-project.org/files/icu4c/${version}/icu4c-${_distver}-src.tgz"
|
|
checksum=cce83cc88a2ff79d65c05426facbf30530bbe13a1cfda04b3ab81b55414cf5a3
|
|
long_desc="
|
|
The International Components for Unicode(ICU) is a C and C++ library that
|
|
provides robust and full-featured Unicode support on a wide variety of
|
|
platforms. The library provides:
|
|
|
|
- Calendar support
|
|
- Character set conversions
|
|
- Collation (language-sensitive)
|
|
- Date and time formatting
|
|
- Locales (140+ supported)
|
|
- Message catalogs (resources)
|
|
- Message formatting
|
|
- Normalization
|
|
- Number and currency formatting
|
|
- Time zones
|
|
- Transliteration
|
|
- Word, line and sentence breaks"
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Configure and build for host.
|
|
mkdir host-build
|
|
cd host-build
|
|
env CC=gcc LD=ld CXX=g++ AR=ar RANLIB=ranlib \
|
|
AS=as STRIP=strip CFLAGS="-Os" CXXFLAGS="-Os" \
|
|
../configure --prefix=/
|
|
make ${makejobs}
|
|
mkdir -p ${wrksrc}/host-icu/config
|
|
cp config/icucross.mk ${wrksrc}/host-icu/config
|
|
make DESTDIR=${wrksrc}/host-icu install
|
|
mv ${wrksrc}/host-icu/sbin/* ${wrksrc}/host-icu/bin
|
|
fi
|
|
}
|
|
|
|
do_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
_cross_args="--with-cross-build=${wrksrc}/host-icu"
|
|
fi
|
|
./configure ${configure_args} ${_cross_args}
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
vinstall $wrksrc/license.html 644 usr/share/licenses/icu
|
|
}
|
|
|
|
icu-devel_package() {
|
|
depends="libstdc++-devel icu>=$version"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/icu
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/icu
|
|
vmove usr/bin/icu-config
|
|
vmove "usr/share/man/man1/icu-config*"
|
|
}
|
|
}
|
|
|
|
icu-libs_package() {
|
|
short_desc+=" - shared libs"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so*"
|
|
}
|
|
}
|