Jan Engelhardt
f9ea65b83e
OBS-URL: https://build.opensuse.org/package/show/X11:common:Factory/icu?expand=0&rev=37
16 lines
320 B
Bash
16 lines
320 B
Bash
#!/bin/sh -ex
|
|
|
|
ver="52.1"
|
|
name="icu4c-52_1-docs.zip"
|
|
|
|
# Put docs in a separate directory
|
|
wget -c "http://download.icu-project.org/files/icu4c/$ver/$name"
|
|
rm -Rf html
|
|
mkdir html
|
|
pushd html
|
|
unzip "../$name"
|
|
if [ -x "$(which optipng)" ]; then optipng *.png; fi
|
|
popd
|
|
tar --use=xz -cvf "${name%.zip}.tar.xz" html
|
|
rm -Rf html
|