https://github.com/rtfpessoa/libicu
https://github.com/rtfpessoa/libicu
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rtfpessoa/libicu
- Owner: rtfpessoa
- Created: 2023-12-29T11:38:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-29T11:39:36.000Z (over 2 years ago)
- Last Synced: 2025-09-28T10:33:21.983Z (10 months ago)
- Size: 15.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libicu
```
apt -y update && apt -y install curl binutils zstd
curl -fsSL http://ports.ubuntu.com/pool/main/i/icu/libicu70_70.1-2ubuntu1_arm64.deb -o icu_arm64.deb
mkdir -p icu_arm64/data
ar x icu_arm64.deb --output=icu_arm64
tar -acf icu_arm64/data.tar.zst -C icu_arm64/data
curl -fsSL http://es.archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2_amd64.deb -o icu_amd64.deb
mkdir -p icu_amd64/data
ar x icu_amd64.deb --output=icu_amd64
tar -acf icu_amd64/data.tar.zst -C icu_amd64/data
mkdir icu_data
cp -rf icu_arm64/data/* icu_data/
cp -rf icu_amd64/data/* icu_data/
tar -cvf icu_data.tar.gz -C icu_data .
```