2014-10-20 07:57:53 +00:00
|
|
|
# Template build file for 'icu-49'.
|
|
|
|
pkgname=icu-49
|
|
|
|
version=49.1.2
|
2015-04-04 22:50:25 +00:00
|
|
|
revision=2
|
2014-10-20 07:57:53 +00:00
|
|
|
wrksrc=icu
|
|
|
|
build_wrksrc=source
|
|
|
|
build_style=gnu-configure
|
|
|
|
short_desc="Robust and full-featured Unicode services (49.x branch)"
|
|
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
|
|
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-${version//./_}-src.tgz"
|
|
|
|
checksum=cce83cc88a2ff79d65c05426facbf30530bbe13a1cfda04b3ab81b55414cf5a3
|
|
|
|
conflicts="icu>=0"
|
|
|
|
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
configure_args+=" --with-cross-build=${XBPS_BUILDDIR}/${wrksrc}/host-icu"
|
|
|
|
fi
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
|
|
# Configure and build for host.
|
|
|
|
mkdir host-build
|
2015-04-04 23:11:32 +00:00
|
|
|
(
|
2014-10-20 07:57:53 +00:00
|
|
|
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
|
2015-04-04 23:11:32 +00:00
|
|
|
)
|
2014-10-20 07:57:53 +00:00
|
|
|
fi
|
2015-04-04 22:50:25 +00:00
|
|
|
|
|
|
|
# libicudata must be linked to libc, otherwise it's soft-float on ARM.
|
|
|
|
# probably other stuff breaks too, so let's just do it.
|
|
|
|
# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=653457
|
|
|
|
sed -e 's,-nostdlib,,g' -i ${wrksrc}/source/config/mh-linux
|
2014-10-20 07:57:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
vinstall $wrksrc/license.html 644 usr/share/licenses/icu
|
|
|
|
}
|
|
|
|
|
|
|
|
icu-49-devel_package() {
|
|
|
|
depends="libstdc++-devel icu-49-libs>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
|
|
|
conflicts="icu-devel>=0"
|
|
|
|
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*"
|
|
|
|
vmove "usr/lib/*.so"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
icu-49-libs_package() {
|
|
|
|
short_desc+=" - shared libs"
|
|
|
|
pkg_install() {
|
|
|
|
vmove "usr/lib/*.so.*"
|
|
|
|
}
|
|
|
|
}
|