blob: 28d9f7bf352c318541507ddb77195fc12a199741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  | 
require "formula"
class Icu4c < Formula
  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
    sha1 "1199e740fbc35f09eaa3774ada8c805c885ca170" => :mavericks
    sha1 "72a163ec611ab7ee984d823fca4202d254627372" => :mountain_lion
    sha1 "69037c3eacbf544ab6191e4290c1bc4a6dbdcda0" => :lion
  end
  keg_only "Conflicts; see: https://github.com/Homebrew/homebrew/issues/issue/167"
  option :universal
  option :cxx11
  def install
    ENV.universal_binary if build.universal?
    ENV.cxx11 if build.cxx11?
    args = ["--prefix=#{prefix}", "--disable-samples", "--disable-tests", "--enable-static"]
    args << "--with-library-bits=64" if MacOS.prefer_64_bit?
    cd "source" do
      system "./configure", *args
      system "make"
      system "make", "install"
    end
  end
end
  |