pkgname=icu pkgver=76.1 pkgrel=1 pkgdesc="International Components for Unicode library" arch=('x86_64') url="https://icu.unicode.org" license=('LicenseRef-Unicode-3.0' 'BSD-2-Clause''BSD-3-Clause') depends=('gcc-libs' 'glibc' 'bash') makedepends=('python') source=(https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/icu4c-${pkgver//./_}-src.tgz) sha256sums=(dfacb46bfe4747410472ce3e1144bf28a102feeaa4e3875bac9b4c6cf30f4f3e) build() { cd ${pkgname}/source local configure_args=( ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}/source make DESTDIR=${pkgdir} install }