PKGBUILDs/core/icu/PKGBUILD

69 lines
3 KiB
Bash
Raw Normal View History

2014-04-18 21:56:06 +00:00
# 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
2020-02-27 13:13:50 +00:00
# - remove check for clang in configure - picks up distcc
2014-04-18 21:56:06 +00:00
pkgname=icu
2023-12-18 17:15:36 +00:00
pkgver=74.2
pkgrel=1
2014-04-18 21:56:06 +00:00
pkgdesc="International Components for Unicode library"
2017-11-17 23:23:43 +00:00
arch=(x86_64)
2021-11-24 03:35:48 +00:00
url="https://icu.unicode.org"
2014-10-20 19:07:51 +00:00
license=('custom:icu')
2023-06-29 03:08:33 +00:00
depends=('gcc-libs' 'glibc' 'sh')
2019-04-07 16:44:28 +00:00
makedepends=('python')
2020-05-01 12:55:53 +00:00
provides=(libicu{data,i18n,io,test,tu,uc}.so)
2023-12-18 17:15:36 +00:00
source=(https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz{,.asc}
2023-07-17 12:28:09 +00:00
ICU-22132.patch
2023-12-18 17:15:36 +00:00
icudata-stdlibs.patch
LICENSE)
# https://github.com/unicode-org/icu/releases/download/release-74-2/SHASUM512.txt
sha512sums=('0cbe29122370ba03a8fb5b0f1494f598748044ad2aa4d66ba65fe98ebeb88da2d73d324ad6bfc44e004846e0ab5c9a34d1fdf3d6bdb3095c0d47e929b943e6db'
2018-08-08 19:25:16 +00:00
'SKIP'
2023-07-17 12:28:09 +00:00
'1178062ccfcf7ecc698c64132b3612e73f9c4b0bbfaa668ae2039f3eb4cb2722d0b08a9f45b057da10def7a308d5c8d14c0c644892e7f11092c9cc488c850ab7'
2023-12-18 17:15:36 +00:00
'8f13898c2b2d69ef516ee0831a73e5865676795716e7becac4457e208642bfdffb42f2a9280e99dcc10303ad721f5dc2e10ef83c633bd723044e98cc72c6bc7b'
'c1c3b2deaf2aeb1d90c1ca85d57db921e140e5087c1eba579dabaca94568a840a0e105145b8016f3b7269216ddc1b0ac56e1d5d1753129a99367e51e2080a6b0')
#validpgpkeys=('BA90283A60D67BA0DD910A893932080F4FB419E3') # "Steven R. Loomis (filfla-signing) <srloomis@us.ibm.com>"
#validpgpkeys+=('9731166CD8E23A83BEE7C6D3ACA5DBE1FD8FABF1') # "Steven R. Loomis (ICU Project) <srl@icu-project.org>"
2021-11-24 03:35:48 +00:00
#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>"
2022-10-22 14:39:27 +00:00
#validpgpkeys=('0E51E7F06EF719FBD072782A5F56E5AFA63CCD33') #"Craig Cornelius (For use with ICU releases) <ccornelius@google.com>"
validpgpkeys=('3DA35301A7C330257B8755754058F67406EAA6AB') # Craig Cornelius <ccornelius@google.com>
2014-04-18 21:56:06 +00:00
prepare() {
2020-05-01 12:55:53 +00:00
cd icu/source
2023-12-18 17:15:36 +00:00
# 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
2023-07-17 12:28:09 +00:00
patch -Np1 < "../../ICU-22132.patch"
2014-04-18 21:56:06 +00:00
patch -p2 -i ${srcdir}/icudata-stdlibs.patch
2020-02-27 13:13:50 +00:00
sed -r -i 's/(for ac_prog in )clang(\+\+)? /\1/g' configure
2014-04-18 21:56:06 +00:00
}
build() {
cd icu/source
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--sbindir=/usr/bin
make
}
check() {
cd icu/source
2023-12-18 17:15:36 +00:00
make check
2014-04-18 21:56:06 +00:00
}
package() {
cd icu/source
2023-12-18 17:15:36 +00:00
make DESTDIR="${pkgdir}" install
2014-04-18 21:56:06 +00:00
# Install license
2023-12-18 17:15:36 +00:00
# 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
2014-04-18 21:56:06 +00:00
}