Package Details: icu73-bin 73.2-1

Git Clone URL: https://aur.archlinux.org/icu73-bin.git (read-only, click to copy)
Package Base: icu73-bin
Description: International Components for Unicode library (version 73)
Upstream URL: https://github.com/unicode-org/icu
Licenses: custom:icu
Conflicts: icu73
Provides: icu73
Submitter: doclai
Maintainer: doclai
Last Packager: doclai
Votes: 4
Popularity: 0.60
First Submitted: 2023-12-19 04:33 (UTC)
Last Updated: 2023-12-19 04:38 (UTC)

Latest Comments

aleXPS commented on 2024-04-01 11:28 (UTC)

diff --git a/PKGBUILD b/PKGBUILD index 4db2e64..23beaeb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,10 +1,11 @@ # Maintainer: Trenzalore

_major=73 +_minor=2 _gitname=icu _pkgname=$_gitname$_major pkgname="$_pkgname-bin" -pkgver="$_major.2" +pkgver="$_major.$_minor" pkgrel=1 pkgdesc="International Components for Unicode library (version 73)" arch=('x86_64') @@ -29,7 +30,12 @@ prepare() {

package() { cd $_src_libdir - install -Dm644 * -t "$pkgdir/usr/lib/" + install -Dm644 .$_major.$_minor -t "$pkgdir/usr/lib/" + for link in .$_major; do + pushd "$pkgdir/usr/lib/" + ln -s $link.$_minor $link + popd + done install -Dm644 ../share/$_gitname/$pkgver/LICENSE \ -t "$pkgdir/usr/share/licenses/$pkgname" }