Jan Engelhardt
d0a3cde39d
OBS-URL: https://build.opensuse.org/package/show/X11:common:Factory/icu?expand=0&rev=20
14 lines
242 B
Bash
14 lines
242 B
Bash
#!/bin/sh -ex
|
|
|
|
ver="51.1"
|
|
name="icu4c-51_1-docs.zip"
|
|
wget -c "http://download.icu-project.org/files/icu4c/$ver/$name"
|
|
rm -Rf html
|
|
mkdir html
|
|
pushd html
|
|
unzip "../$name"
|
|
popd
|
|
tar --use=xz -cvf "${name%.zip}.tar.xz" html
|
|
rm "$name"
|
|
rm -Rf html
|