homebrew-core/Formula/gettext.rb

42 lines
1.6 KiB
Ruby
Raw Normal View History

require "formula"
2011-03-10 05:11:03 +00:00
class Gettext < Formula
homepage "https://www.gnu.org/software/gettext/"
url "http://ftpmirror.gnu.org/gettext/gettext-0.19.3.tar.xz"
mirror "https://ftp.gnu.org/gnu/gettext/gettext-0.19.3.tar.xz"
sha256 "f6fdb29c9ee8ce85c7e574f60ff64fa91cf0f4f018437dfe800227d15595db46"
2013-01-31 05:06:21 +00:00
2014-02-04 16:07:02 +00:00
bottle do
2014-10-17 20:04:32 +00:00
sha1 "9ec1f76ee701c724a0f5fd173437b74ceaa4b05a" => :yosemite
2014-10-17 03:03:04 +00:00
sha1 "8e94d136e0e9bdab19155e08a78c35e9691e50cf" => :mavericks
sha1 "dc373eedc56725b494be8f340e374b59b841d8c6" => :mountain_lion
sha1 "c78b336ceaa699f4186ed4f56e0c641c11e47cc9" => :lion
2014-02-04 16:07:02 +00:00
end
keg_only :shadowed_by_osx, "OS X provides the BSD gettext library and some software gets confused if both are in the library path."
2012-08-10 04:58:02 +00:00
option :universal
def install
ENV.libxml2
2012-08-10 04:58:02 +00:00
ENV.universal_binary if build.universal?
2011-06-05 02:51:51 +00:00
system "./configure", "--disable-dependency-tracking",
"--disable-debug",
"--prefix=#{prefix}",
"--with-included-gettext",
"--with-included-glib",
"--with-included-libcroco",
"--with-included-libunistring",
"--with-emacs",
"--disable-java",
"--disable-csharp",
# Don't use VCS systems to create these archives
"--without-git",
"--without-cvs"
system "make"
ENV.deparallelize # install doesn't support multiple make jobs
system "make", "install"
end
end