Skip to content

Instantly share code, notes, and snippets.

@practual
Last active November 5, 2023 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save practual/7030ad160331bbf75e03b083e5123aff to your computer and use it in GitHub Desktop.
Save practual/7030ad160331bbf75e03b083e5123aff to your computer and use it in GitHub Desktop.
# Based on https://raw.githubusercontent.com/Homebrew/homebrew-core/b64056f13d781210e6512704f8be7a3bf9db4412/Formula/icu4c.rb
class Icu4c < Formula
desc "C/C++ and Java libraries for Unicode and globalization"
homepage "http://site.icu-project.org/"
url "https://ssl.icu-project.org/files/icu4c/58.2/icu4c-58_2-src.tgz"
mirror "https://fossies.org/linux/misc/icu4c-58_2-src.tgz"
mirror "https://downloads.sourceforge.net/project/icu/ICU4C/58.2/icu4c-58_2-src.tgz"
version "58.2"
sha256 "2b0a4410153a9b20de0e20c7d8b66049a72aef244b53683d0d7521371683da0c"
head "https://ssl.icu-project.org/repos/icu/trunk/icu4c/", :using => :svn
bottle do
cellar :any
sha256 "779eda1c03f44b54300b5e70143f6bd4866b6f5f582e4216124649539164b029" => :sierra
sha256 "f8267df67e76db7412baf967dd9ef6e8c625cd207707960a6a2a860e0c07f92b" => :el_capitan
sha256 "7ce8fa8fba5ba285bfb0278d2e73c01e8d2ff3115a5ad762255cacde6ffeecfb" => :yosemite
end
keg_only :provided_by_macos, "macOS provides libicucore.dylib (but nothing else)."
option :universal
option :cxx11
def install
ENV.universal_binary if build.universal?
ENV.cxx11 if build.cxx11?
args = %W[--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
test do
system "#{bin}/gendict", "--uchars", "/usr/share/dict/words", "dict"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment