mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
68 lines
3 KiB
Bash
68 lines
3 KiB
Bash
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
# Contributor: Art Gramlich <art@gramlich-net.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to fix icudata library linking on ARM
|
|
# - remove check for clang in configure - picks up distcc
|
|
|
|
pkgname=icu
|
|
pkgver=74.2
|
|
pkgrel=1
|
|
pkgdesc="International Components for Unicode library"
|
|
arch=(x86_64)
|
|
url="https://icu.unicode.org"
|
|
license=('custom:icu')
|
|
depends=('gcc-libs' 'glibc' 'sh')
|
|
makedepends=('python')
|
|
provides=(libicu{data,i18n,io,test,tu,uc}.so)
|
|
source=(https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz{,.asc}
|
|
ICU-22132.patch
|
|
icudata-stdlibs.patch
|
|
LICENSE)
|
|
# https://github.com/unicode-org/icu/releases/download/release-74-2/SHASUM512.txt
|
|
sha512sums=('0cbe29122370ba03a8fb5b0f1494f598748044ad2aa4d66ba65fe98ebeb88da2d73d324ad6bfc44e004846e0ab5c9a34d1fdf3d6bdb3095c0d47e929b943e6db'
|
|
'SKIP'
|
|
'1178062ccfcf7ecc698c64132b3612e73f9c4b0bbfaa668ae2039f3eb4cb2722d0b08a9f45b057da10def7a308d5c8d14c0c644892e7f11092c9cc488c850ab7'
|
|
'8f13898c2b2d69ef516ee0831a73e5865676795716e7becac4457e208642bfdffb42f2a9280e99dcc10303ad721f5dc2e10ef83c633bd723044e98cc72c6bc7b'
|
|
'c1c3b2deaf2aeb1d90c1ca85d57db921e140e5087c1eba579dabaca94568a840a0e105145b8016f3b7269216ddc1b0ac56e1d5d1753129a99367e51e2080a6b0')
|
|
#validpgpkeys=('BA90283A60D67BA0DD910A893932080F4FB419E3') # "Steven R. Loomis (filfla-signing) <srloomis@us.ibm.com>"
|
|
#validpgpkeys+=('9731166CD8E23A83BEE7C6D3ACA5DBE1FD8FABF1') # "Steven R. Loomis (ICU Project) <srl@icu-project.org>"
|
|
#validpgpkeys+=('FFA9129A180D765B7A5BEA1C9B432B27D1BA20D7') # "Fredrik Roubert <fredrik@roubert.name>"
|
|
#validpgpkeys+=('E4098B78AFC94394F3F49AA903996C7C83F12F11') # "keybase.io/srl295 <srl295@keybase.io>"
|
|
#validpgpkeys+=('4569BBC09DA846FC91CBD21CE1BBA44593CF2AE0') # "Steven R. Loomis (codesign-qormi) <srloomis@us.ibm.com>"
|
|
#validpgpkeys=('0E51E7F06EF719FBD072782A5F56E5AFA63CCD33') #"Craig Cornelius (For use with ICU releases) <ccornelius@google.com>"
|
|
validpgpkeys=('3DA35301A7C330257B8755754058F67406EAA6AB') # Craig Cornelius <ccornelius@google.com>
|
|
|
|
prepare() {
|
|
cd icu/source
|
|
# Required fix for thunderbird 115 to show Calendar and sidebar properly
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1843007
|
|
# https://unicode-org.atlassian.net/browse/ICU-22132
|
|
patch -Np1 < "../../ICU-22132.patch"
|
|
patch -p2 -i ${srcdir}/icudata-stdlibs.patch
|
|
sed -r -i 's/(for ac_prog in )clang(\+\+)? /\1/g' configure
|
|
}
|
|
|
|
build() {
|
|
cd icu/source
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd icu/source
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd icu/source
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
# Install license
|
|
# https://unicode-org.atlassian.net/browse/ICU-22601
|
|
# install -Dm644 "${srcdir}"/icu/LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
|
install -Dm644 "${srcdir}"/LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|