blob: bbc11349c441fe16ab94b6a5d6bd42a08c1e63b6 (
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
34
35
36
|
require 'formula'
class Icu4c < Formula
homepage 'http://site.icu-project.org/'
url 'http://download.icu-project.org/files/icu4c/50.1/icu4c-50_1-src.tgz'
version '50.1'
sha1 '9a3369c00a8be8eff935d2893849ad2eb246c0ef'
bottle do
revision 2
sha1 '34c2ab788c5ca698c1902d3d6c38db0461f8b100' => :mountain_lion
sha1 '899afa2267843f7204583884885f2c05f8189ddc' => :lion
sha1 'a54cbdd33dbdcb0fd8ed2441580e91e8ff114640' => :snow_leopard
end
keg_only "Conflicts; see: https://github.com/mxcl/homebrew/issues/issue/167"
option :universal
fails_with :clang do
cause "Icu will turn on C++11 mode when built with clang, which causes incompatibilities."
end
def install
ENV.universal_binary if build.universal?
ENV.append "LDFLAGS", "-headerpad_max_install_names"
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
|