summaryrefslogtreecommitdiff
path: root/system/icu/APKBUILD
blob: a27b1fda6acc2ec31ff9709efefec5b394c3e5d1 (plain) (blame)
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
81
82
# Contributor: Sergey Lukin <sergej.lukin@gmail.com>
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=icu
pkgver=77.1

# convert x.y.z to x_y_z
_ver=$(printf '%s' "$pkgver" | tr . _)

pkgrel=0
pkgdesc="International Components for Unicode"
url="https://icu.unicode.org"
arch="all"
license="ICU"
depends=""
checkdepends="diffutils python3"
makedepends=""
subpackages="$pkgname-static $pkgname-dev $pkgname-doc $pkgname-libs"
source="https://github.com/unicode-org/icu/releases/download/release-$(printf '%s' "$pkgver" | tr . -)/${pkgname}4c-$_ver-src.tgz
	icu-60.2-always-use-utf8.patch
	"

# secfixes:
#   57.1-r1:
#     - CVE-2016-6293
#   58.1-r1:
#     - CVE-2016-7415
#   58.2-r2:
#     - CVE-2017-7867
#     - CVE-2017-7868
#   65.1-r1:
#     - CVE-2020-10531

builddir="$srcdir"/icu/source

prepare() {
	default_prepare
	update_config_sub

	# https://unicode-org.atlassian.net/browse/ICU-6102
	for x in ARFLAGS CFLAGS CPPFLAGS CXXFLAGS FFLAGS LDFLAGS; do
		sed -i -e "/^${x} =.*/s:@${x}@::" "config/Makefile.inc.in"
	done
}

build() {
	# GCC 13 changed default fp precision behavior. (#1193)
	export CXXFLAGS="${CXXFLAGS} -fexcess-precision=fast"

	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--enable-shared \
		--enable-static \
		--with-data-packaging=library \
		--disable-samples \
		--mandir=/usr/share/man
	# Weird build system glitch.
	mkdir data/out
	make
}

check() {
	TZ=UTC make check
}

package() {
	make -j1 DESTDIR="$pkgdir" install
	chmod +x "$pkgdir"/usr/bin/icu-config
	install -Dm644 "$srcdir"/icu/license.html \
		"$pkgdir"/usr/share/licenses/icu/license.html
}

static() {
	pkgdesc="$pkgdesc (Static libraries)"
	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/
}

sha512sums="a47d6d9c327d037a05ea43d1d1a06b2fd757cc02a94f7c1a238f35cfc3dfd4ab78d0612790f3a3cca0292c77412a9c2c15c8f24b718f79a857e007e66f07e7cd  icu4c-77_1-src.tgz
95c37febf7b6291dd0766de0dbd8eaee14132ad1b84bc93260b9e19cb3c05a786e8780ac0cbd47bf80182f73c647d4e5f067c9b4f5fbeda13a7fcc34b3bc0341  icu-60.2-always-use-utf8.patch"