2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 14:17:44 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Icu4c < Formula
|
2010-07-25 20:04:27 +00:00
|
|
|
homepage 'http://site.icu-project.org/'
|
2013-10-10 22:29:38 +00:00
|
|
|
url 'http://download.icu-project.org/files/icu4c/52.1/icu4c-52_1-src.tgz'
|
|
|
|
version '52.1'
|
|
|
|
sha1 '6de440b71668f1a65a9344cdaf7a437291416781'
|
2013-08-19 20:57:59 +00:00
|
|
|
head 'http://source.icu-project.org/repos/icu/icu/trunk/', :using => :svn
|
2012-12-01 13:21:30 +00:00
|
|
|
|
2013-10-11 07:53:47 +00:00
|
|
|
bottle do
|
2013-12-11 02:05:39 +00:00
|
|
|
revision 1
|
|
|
|
sha1 'c38fd0be5f63a0dd187ee76a9321d543d02d3638' => :mavericks
|
|
|
|
sha1 '636b03a9cfd3e686b7c89891eddb74ba34cbf456' => :mountain_lion
|
|
|
|
sha1 'f09512efdb8b12edfe080492a5a1c0bafc5a2941' => :lion
|
2013-10-11 07:53:47 +00:00
|
|
|
end
|
|
|
|
|
2013-12-14 18:13:11 +00:00
|
|
|
keg_only "Conflicts; see: https://github.com/Homebrew/homebrew/issues/issue/167"
|
2012-11-18 16:57:18 +00:00
|
|
|
|
2012-08-10 05:10:50 +00:00
|
|
|
option :universal
|
2013-10-12 08:18:01 +00:00
|
|
|
option :cxx11
|
2012-02-25 09:12:46 +00:00
|
|
|
|
2009-09-01 14:17:44 +00:00
|
|
|
def install
|
2012-08-10 05:10:50 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2013-10-12 08:18:01 +00:00
|
|
|
ENV.cxx11 if build.cxx11?
|
2012-02-25 09:12:46 +00:00
|
|
|
|
2012-07-22 15:10:44 +00:00
|
|
|
args = ["--prefix=#{prefix}", "--disable-samples", "--disable-tests", "--enable-static"]
|
2012-02-21 06:04:21 +00:00
|
|
|
args << "--with-library-bits=64" if MacOS.prefer_64_bit?
|
|
|
|
cd "source" do
|
|
|
|
system "./configure", *args
|
2013-10-23 08:28:28 +00:00
|
|
|
system "make", "VERBOSE=1"
|
|
|
|
system "make", "VERBOSE=1", "install"
|
2009-09-01 14:17:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|