icu4c 53.1

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Tomasz Pajor 2014-08-07 23:12:11 -05:00 committed by Jack Nagel
parent 3a329462ce
commit 5395c303c7
1 changed files with 11 additions and 12 deletions

View File

@ -1,17 +1,16 @@
require 'formula'
require "formula"
class Icu4c < Formula
homepage 'http://site.icu-project.org/'
url 'http://download.icu-project.org/files/icu4c/52.1/icu4c-52_1-src.tgz'
version '52.1'
sha1 '6de440b71668f1a65a9344cdaf7a437291416781'
head 'http://source.icu-project.org/repos/icu/icu/trunk/', :using => :svn
homepage "http://site.icu-project.org/"
head "http://source.icu-project.org/repos/icu/icu/trunk/", :using => :svn
url "http://download.icu-project.org/files/icu4c/53.1/icu4c-53_1-src.tgz"
version "53.1"
sha1 "7eca017fdd101e676d425caaf28ef862d3655e0f"
bottle do
revision 1
sha1 'c38fd0be5f63a0dd187ee76a9321d543d02d3638' => :mavericks
sha1 '636b03a9cfd3e686b7c89891eddb74ba34cbf456' => :mountain_lion
sha1 'f09512efdb8b12edfe080492a5a1c0bafc5a2941' => :lion
sha1 "c38fd0be5f63a0dd187ee76a9321d543d02d3638" => :mavericks
sha1 "636b03a9cfd3e686b7c89891eddb74ba34cbf456" => :mountain_lion
sha1 "f09512efdb8b12edfe080492a5a1c0bafc5a2941" => :lion
end
keg_only "Conflicts; see: https://github.com/Homebrew/homebrew/issues/issue/167"
@ -27,8 +26,8 @@ class Icu4c < Formula
args << "--with-library-bits=64" if MacOS.prefer_64_bit?
cd "source" do
system "./configure", *args
system "make", "VERBOSE=1"
system "make", "VERBOSE=1", "install"
system "make"
system "make", "install"
end
end
end