blob: 16e8c8f4e57d410de3b0ddd7eec2be7165923be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: pingplug < aur at pingplug dot me >
# Contributor: Schala Zeal < schalaalexiazeal at gmail dot com >
# Contributor: ant32 < antreimer at gmail dot com >
# Contributor: Alexey Pavlov < Alexpux at gmail dot com >
# Contributor: Ray Donnelly < mingw dot android at gmail dot com >
_android_arch=aarch64
pkgname=android-${_android_arch}-icu
pkgver=76.1
pkgrel=1
arch=('any')
pkgdesc="International Components for Unicode library (Android ${_android_arch})"
groups=('android-icu')
depends=('android-ndk')
makedepends=('android-environment'
'autoconf-archive')
options=(!strip !buildflags staticlibs !emptydirs)
license=('custom')
url="https://icu.unicode.org/"
source=("https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz"
"0001-Unversioned-libs.patch")
md5sums=('857fdafff8127139cc175a3ec9b43bd6'
'47ed468f22e2c16909505253f16e0da5')
prepare() {
cd "${srcdir}/icu"
patch -p1 -i ../0001-Unversioned-libs.patch
cd source
autoreconf -fi
}
build() {
cd "${srcdir}/icu/source"
mkdir -p nativebuild && pushd nativebuild
CC=gcc CXX=g++ ../configure \
--enable-static \
--disable-shared
make $MAKEFLAGS
popd
source android-env ${_android_arch}
unset CPPFLAGS
target=${_android_arch/x86-/x86_}-linux-android
./configure \
--host=${target} \
--target=${target} \
--build="${CHOST}" \
--prefix="${ANDROID_PREFIX}" \
--libdir="${ANDROID_PREFIX_LIB}" \
--includedir="${ANDROID_PREFIX_INCLUDE}" \
--enable-shared \
--enable-static \
--with-cross-build="${PWD}/nativebuild" \
--with-data-packaging=library \
--disable-rpath \
--enable-release \
--disable-extras \
--disable-tools \
--disable-tests \
--disable-samples
make $MAKEFLAGS
}
package() {
cd "${srcdir}/icu/source"
source android-env ${_android_arch}
make install DESTDIR="${pkgdir}"
rm -rf "${pkgdir}/${ANDROID_PREFIX_SHARE}/man"
${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so
${ANDROID_STRIP} -g "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.a
rm -f "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so.*
}
|