diff options
| -rw-r--r-- | Library/Formula/icu4c.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/icu4c.rb b/Library/Formula/icu4c.rb index e1879bb53..257e17780 100644 --- a/Library/Formula/icu4c.rb +++ b/Library/Formula/icu4c.rb @@ -13,7 +13,15 @@ class Icu4c < Formula keg_only "Conflicts; see: https://github.com/mxcl/homebrew/issues/issue/167" + def options + [ + ["--universal", "Build universal binaries."] + ] + end + def install + ENV.universal_binary if ARGV.build_universal? + ENV.append "LDFLAGS", "-headerpad_max_install_names" args = ["--prefix=#{prefix}", "--disable-samples", "--enable-static"] args << "--with-library-bits=64" if MacOS.prefer_64_bit? |
