From f91e368ccc608edb2f2587970fd1f5550b4b02e5 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 21 Apr 2021 19:44:21 +0200 Subject: added a icu68 build shim --- core/icu68/PKGBUILD | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'core/icu68/PKGBUILD') diff --git a/core/icu68/PKGBUILD b/core/icu68/PKGBUILD index e69de29b..9d1548b0 100644 --- a/core/icu68/PKGBUILD +++ b/core/icu68/PKGBUILD @@ -0,0 +1,54 @@ +# Maintainer: Andreas Radke +# Contributor: Art Gramlich + +pkgname=icu68 +pkgver=68.2 +pkgrel=1 +pkgdesc="International Components for Unicode library" +arch=(i486 i686 pentium4 x86_64) +url="http://site.icu-project.org/home" +license=('custom:icu') +depends=('gcc-libs' 'sh') +makedepends=('python') +provides=(libicu{data,i18n,io,test,tu,uc}.so) +source=('https://github.com/unicode-org/icu/releases/download/release-68-2/icu4c-68_2-src.tgz') +# https://github.com/unicode-org/icu/releases/download/release-65-1/SHASUM512.txt - no checksum file for v67 release +sha512sums=('24f3b7981667b37df58118f56ae76a09b719358c1efa8d6f044d28ef8df1c722a894957acadfb3c37aee39ac845893924fc3370d6bbe09875aec8d937059f84b') +validpgpkeys=('BA90283A60D67BA0DD910A893932080F4FB419E3') # "Steven R. Loomis (filfla-signing) " +validpgpkeys+=('9731166CD8E23A83BEE7C6D3ACA5DBE1FD8FABF1') # "Steven R. Loomis (ICU Project) " +validpgpkeys+=('FFA9129A180D765B7A5BEA1C9B432B27D1BA20D7') # "Fredrik Roubert " +validpgpkeys+=('E4098B78AFC94394F3F49AA903996C7C83F12F11') # "keybase.io/srl295 " +validpgpkeys+=('4569BBC09DA846FC91CBD21CE1BBA44593CF2AE0') # "Steven R. Loomis (codesign-qormi) " +validpgpkeys+=('0E51E7F06EF719FBD072782A5F56E5AFA63CCD33') #"Craig Cornelius (For use with ICU releases) " + +build() { + cd icu/source + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --sbindir=/usr/bin + make +} + +check() { + cd icu/source + make -k check +} + +package() { + cd icu/source + make -j1 DESTDIR="${pkgdir}" install + + # we keep only the libraries + rm -rf "${pkgdir}/usr/bin" + rm -rf "${pkgdir}/usr/include" + rm -rf "${pkgdir}/usr/lib/pkgconfig" + rm -rf "${pkgdir}/usr/lib/icu" + rm -rf "${pkgdir}/usr/lib/"*.so + rm -rf "${pkgdir}/usr/share" + + # Install license + install -Dm644 "${srcdir}"/icu/LICENSE "${pkgdir}"/usr/share/licenses/icu/LICENSE +} + +groups+=(build-shims) -- cgit v1.2.3