aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTomasz Pajor2014-08-07 23:12:11 -0500
committerJack Nagel2014-08-07 23:12:11 -0500
commit8e5fed004fb16825f808c1d9df097bcb21fb8027 (patch)
treecdfb10c69dea34d31dfeb18c090e670b65bff0ae /Library/Formula
parent20c3255b494b1a38b966aa5a2dabb411a2876422 (diff)
downloadhomebrew-8e5fed004fb16825f808c1d9df097bcb21fb8027.tar.bz2
icu4c 53.1
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/icu4c.rb23
1 files changed, 11 insertions, 12 deletions
diff --git a/Library/Formula/icu4c.rb b/Library/Formula/icu4c.rb
index 8333b4df0..cf63393d4 100644
--- a/Library/Formula/icu4c.rb
+++ b/Library/Formula/icu4c.rb
@@ -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