blob: 0dd724cd1773833d4ae71cf6832092fd8ea2e2e4 (
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
|
# Maintainer: Torben <git at letorbi dot com>
_pkgname=icu
pkgname=icu70
pkgver=70.1
pkgrel=3
pkgdesc='International Components for Unicode library'
arch=('i686' 'x86_64')
url="http://www.icu-project.org/"
license=('custom:icu')
depends=(gcc-libs glibc)
makedepends=(python clang make patch)
source=("https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz")
sha512sums=('0b26ae7207155cb65a8fdb25f7b2fa4431e74b12bccbed0884a17feaae3c96833d12451064dd152197fd6ea5fd3adfd95594284a463e66c82e0d860f645880c9')
prepare() {
# workaround for unittest.makeSuite() is deprecated in Python 3.11
find "${srcdir}" -type f -print0 | xargs -0 sed -i 's/unittest.makeSuite/unittest.TestLoader().loadTestsFromTestCase/g'
}
build() {
cd "${_pkgname}/source"
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--sbindir=/usr/bin
make
}
check() {
cd "${_pkgname}/source"
make -k check
}
package() {
cd "${_pkgname}/source"
make DESTDIR="${pkgdir}" install
rm -rf "${pkgdir}"/usr/{bin,include,share,lib/{pkgconfig,*.so,icu/{current,Makefile.inc,pkgdata.inc}}}
# install license
install -Dm644 "${srcdir}/${_pkgname}/LICENSE" "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
}
# vim:set ts=2 sw=2 et:
|