Search Criteria
Package Details: icu73-bin 73.2-1
Package Actions
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: | 6 |
Popularity: | 0.018343 |
First Submitted: | 2023-12-19 04:33 (UTC) |
Last Updated: | 2023-12-19 04:38 (UTC) |
Dependencies (2)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc11-libsAUR, gcc-libs-snapshotAUR)
- sh (dashbinshAUR, bash-devel-static-gitAUR, zshbinshAUR, bash-devel-gitAUR, busybox-coreutilsAUR, bash-gitAUR, bash)
Latest Comments
dreieck commented on 2025-01-12 15:51 (UTC)
Can you also add the header files (
/usr/include/unicode-73/*
) foricu73-bin
?dreieck commented on 2025-01-12 15:38 (UTC)
Can you please add .soname-
provides
entries?Otherwise,
icu73-bin
is not a drop-in replacement foricu73
because packages depend onlibicudata.so=73
,libicui18n.so=73
,libicuuc.so=73
etc.:Regards and thanks for the package!
dreieck commented on 2025-01-12 15:38 (UTC) (edited on 2025-01-12 15:39 (UTC) by dreieck)
Can you please add
pkg-config
.pc
files foricu73
?I currently fail to manually feed
icu73
instead of the latest version oficu
into acmake
project without this.Regards!
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" }