2011-03-10 05:11:03 +00:00
|
|
|
class Gettext < Formula
|
2014-06-02 20:31:03 +00:00
|
|
|
homepage "https://www.gnu.org/software/gettext/"
|
2014-12-27 04:49:42 +00:00
|
|
|
url "http://ftpmirror.gnu.org/gettext/gettext-0.19.4.tar.xz"
|
|
|
|
mirror "https://ftp.gnu.org/gnu/gettext/gettext-0.19.4.tar.xz"
|
|
|
|
sha256 "719adadb8bf3e36bac52c243a01c0add18d23506a3a40437e6f5899ceab18d20"
|
2013-01-31 05:06:21 +00:00
|
|
|
|
2014-02-04 16:07:02 +00:00
|
|
|
bottle do
|
2014-12-27 05:24:23 +00:00
|
|
|
sha1 "b1536310f96a0dfff5442b370dda06169cef92ab" => :yosemite
|
|
|
|
sha1 "1720f95c4392d4f26d60f39c5722f99e91b09330" => :mavericks
|
|
|
|
sha1 "0a94590e0d9a6546644b4b00015a5d8444cdf384" => :mountain_lion
|
2014-02-04 16:07:02 +00:00
|
|
|
end
|
|
|
|
|
2014-08-27 19:53:41 +00:00
|
|
|
keg_only :shadowed_by_osx, "OS X provides the BSD gettext library and some software gets confused if both are in the library path."
|
2013-07-09 20:46:19 +00:00
|
|
|
|
2012-08-10 04:58:02 +00:00
|
|
|
option :universal
|
2011-06-05 02:51:00 +00:00
|
|
|
|
2009-06-06 22:54:52 +00:00
|
|
|
def install
|
2009-08-07 14:41:43 +00:00
|
|
|
ENV.libxml2
|
2012-08-10 04:58:02 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-06-05 02:51:51 +00:00
|
|
|
|
2013-06-10 14:32:15 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2014-11-18 23:19:29 +00:00
|
|
|
"--disable-silent-rules",
|
2013-06-10 14:32:15 +00:00
|
|
|
"--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-included-gettext",
|
|
|
|
"--with-included-glib",
|
|
|
|
"--with-included-libcroco",
|
|
|
|
"--with-included-libunistring",
|
|
|
|
"--with-emacs",
|
2013-07-09 22:42:38 +00:00
|
|
|
"--disable-java",
|
2013-07-31 04:32:59 +00:00
|
|
|
"--disable-csharp",
|
2013-06-10 14:32:15 +00:00
|
|
|
# Don't use VCS systems to create these archives
|
|
|
|
"--without-git",
|
2014-11-18 23:19:29 +00:00
|
|
|
"--without-cvs",
|
|
|
|
"--without-xz"
|
2009-06-06 22:54:52 +00:00
|
|
|
system "make"
|
2009-08-07 14:41:43 +00:00
|
|
|
ENV.deparallelize # install doesn't support multiple make jobs
|
2014-10-17 02:52:53 +00:00
|
|
|
system "make", "install"
|
2009-06-06 22:54:52 +00:00
|
|
|
end
|
2014-12-27 16:00:45 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/gettext", "test"
|
|
|
|
end
|
2009-06-06 22:54:52 +00:00
|
|
|
end
|