2011-03-10 05:11:03 +00:00
|
|
|
class Icu4c < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "C/C++ and Java libraries for Unicode and globalization"
|
2014-08-08 04:12:11 +00:00
|
|
|
homepage "http://site.icu-project.org/"
|
2015-04-29 09:31:53 +00:00
|
|
|
head "https://ssl.icu-project.org/repos/icu/icu/trunk/", :using => :svn
|
|
|
|
url "https://ssl.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz"
|
2015-07-28 04:41:03 +00:00
|
|
|
mirror "https://fossies.org/linux/misc/icu4c-55_1-src.tgz"
|
2015-04-29 09:31:53 +00:00
|
|
|
version "55.1"
|
|
|
|
sha256 "e16b22cbefdd354bec114541f7849a12f8fc2015320ca5282ee4fd787571457b"
|
2012-12-01 13:21:30 +00:00
|
|
|
|
2013-10-11 07:53:47 +00:00
|
|
|
bottle do
|
2015-04-29 21:02:06 +00:00
|
|
|
sha256 "a27e2b3645992acec22c95cb6ff4c4893139d3710c1a0be6d54c9f22593fc148" => :yosemite
|
|
|
|
sha256 "c68728ae3a0401fb32ddb3a85eb5ddf8c367268090421d66db2631d49f7b1ce1" => :mavericks
|
|
|
|
sha256 "be4ecad0c4f0542df384dd48c8c57380f6d843958c5d1eddb068e52f910e2dd9" => :mountain_lion
|
2013-10-11 07:53:47 +00:00
|
|
|
end
|
|
|
|
|
2014-10-16 06:09:45 +00:00
|
|
|
keg_only :provided_by_osx, "OS X provides libicucore.dylib (but nothing else)."
|
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
|
2014-08-08 04:12:11 +00:00
|
|
|
system "make"
|
|
|
|
system "make", "install"
|
2009-09-01 14:17:44 +00:00
|
|
|
end
|
|
|
|
end
|
2014-12-27 16:08:31 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/gendict", "--uchars", "/usr/share/dict/words", "dict"
|
|
|
|
end
|
2009-09-01 14:17:44 +00:00
|
|
|
end
|