diff options
| author | Jack Nagel | 2014-11-18 17:19:29 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-11-18 17:19:29 -0600 |
| commit | 46a9cd6b6a8fd662a86f7dd5d783f1ab991e376a (patch) | |
| tree | be4ec2a91623ba43af51c6c3e2977be26fce28ff /Library/Formula | |
| parent | 5e00a9e354c8c60207591d9185655612c4f3517d (diff) | |
| download | homebrew-46a9cd6b6a8fd662a86f7dd5d783f1ab991e376a.tar.bz2 | |
gettext: avoid runtime dependency on xz
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gettext.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/gettext.rb b/Library/Formula/gettext.rb index 7617d1313..782c63c42 100644 --- a/Library/Formula/gettext.rb +++ b/Library/Formula/gettext.rb @@ -5,12 +5,9 @@ class Gettext < Formula 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" + revision 1 bottle do - sha1 "9ec1f76ee701c724a0f5fd173437b74ceaa4b05a" => :yosemite - sha1 "8e94d136e0e9bdab19155e08a78c35e9691e50cf" => :mavericks - sha1 "dc373eedc56725b494be8f340e374b59b841d8c6" => :mountain_lion - sha1 "c78b336ceaa699f4186ed4f56e0c641c11e47cc9" => :lion 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." @@ -22,6 +19,7 @@ class Gettext < Formula ENV.universal_binary if build.universal? system "./configure", "--disable-dependency-tracking", + "--disable-silent-rules", "--disable-debug", "--prefix=#{prefix}", "--with-included-gettext", @@ -33,7 +31,8 @@ class Gettext < Formula "--disable-csharp", # Don't use VCS systems to create these archives "--without-git", - "--without-cvs" + "--without-cvs", + "--without-xz" system "make" ENV.deparallelize # install doesn't support multiple make jobs system "make", "install" |
