Skip to content

Commit

Permalink
icu: Update to 56.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Oct 14, 2015
1 parent 10ce9b3 commit c339194
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 13 deletions.
19 changes: 18 additions & 1 deletion icu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

cd source
chmod +x runConfigureICU configure install-sh
./runConfigureICU Linux --prefix="$PREFIX"

if [ "$(uname)" == "Linux" ]; then
./runConfigureICU Linux --prefix="$PREFIX"
fi

if [ "$(uname)" == "Darwin" ]; then
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LDFLAGS="-Wl,-headerpad_max_install_names"

./configure --prefix="$PREFIX" \
--disable-samples \
--disable-tests \
--enable-static \
--with-library-bits=64
fi

make
make install

25 changes: 13 additions & 12 deletions icu/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
package:
name: icu
version: 54.1
version: 56.1

source:
fn: icu4c-54_1-Win64-msvc10.zip # [win64]
url: http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-Win64-msvc10.zip # [win64]
md5: 4d85e1817a5a59582517262b9396c7ba # [win64]
fn: icu4c-54_1-Win32-msvc10.zip # [win32]
url: http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-Win32-msvc10.zip # [win32]
md5: 2419927dae9f0ac2498b10de657ff6d3 # [win32]
fn: icu4c-54_1-src.tgz # [unix]
url: http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.tgz # [unix]
md5: e844caed8f2ca24c088505b0d6271bc0 # [unix]
fn: icu4c-56_1-Win64-msvc10.zip [win64]
url: http://download.icu-project.org/files/icu4c/56.1/icu4c-56_1-Win64-msvc10.zip [win64]
md5: 480c72491576c048de1218c3c5519399 [win64]
fn: icu4c-56_1-Win32-msvc10.zip [win32]
url: http://download.icu-project.org/files/icu4c/56.1/icu4c-56_1-Win32-msvc10.zip [win32]
md5: 45167a240b60e36b59a87eda23490ce4 [win32]
fn: icu4c-56_1-src.tgz [unix]
url: http://download.icu-project.org/files/icu4c/56.1/icu4c-56_1-src.tgz [unix]
md5: c4a2d71ff56aec5ebfab2a3f059be99d [unix]

about:
home: http://site.icu-project.org/
license: MIT
home: http://site.icu-project.org/
license: MIT

0 comments on commit c339194

Please sign in to comment.