🔒 Repository is read-only – file editing is disabled.

recipes/utils/icu/PAGBUILD.yaml main

41 linii Raw ← Powrót
1234567891011121314151617181920212223242526272829303132333435363738394041
pkgname: icu
pkgver: '78.3'
pkgrel: '2'
pkgdesc: 'The International Components for Unicode (ICU) package is a mature, widely used set of C/C++ libraries'
url: 'https://www.icu-project.org/'
arch: x86_64
license:
- 'UNICODE LICENSE V3'

depends: []
makedepends:
- llvm
- doxygen

source:
- 'https://github.com/unicode-org/icu/releases/download/release-${pkgver}/icu4c-${pkgver}-sources.tgz'
- LICENSE

sha256sums:
- SKIP
- SKIP
- SKIP
- SKIP
- SKIP

build: |
  bsdtar xf icu4c-${pkgver}-sources.tgz
  mv ${pkgname} ${pkgname}-${pkgver}
  cd ${pkgname}-${pkgver}/source

  ./configure --prefix=/usr \
  --sbindir=/usr/bin

  make
  make DESTDIR=${PKGDIR} install

  cd ../..
  install -Dm644 ${SRCDIR}/LICENSE ${PKGDIR}/usr/share/licenses/${pkgname}/LICENSE

package: |
  true