2013-03-27 01:04:24 +01:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
2013-06-05 19:42:10 +02:00
|
|
|
ver="51.2"
|
|
|
|
name="icu4c-51_2-docs.zip"
|
|
|
|
|
|
|
|
# Put docs in a separate directory
|
2013-03-27 01:04:24 +01:00
|
|
|
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
|