aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlex Dunn2015-04-15 18:02:44 -0700
committerXu Cheng2015-04-16 18:32:41 +0800
commitfa95f0360e4d9de727ab1e8e6d2dad57705c36b3 (patch)
tree3a2fa6ad890df94fb1244ab4993b08c2157be1bf /Library
parent4fe780cb468fdfee79c54e2e5ef327a5ce855cbe (diff)
downloadhomebrew-fa95f0360e4d9de727ab1e8e6d2dad57705c36b3.tar.bz2
intltool 0.51.0
Closes #38697. Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/intltool.rb17
1 files changed, 10 insertions, 7 deletions
diff --git a/Library/Formula/intltool.rb b/Library/Formula/intltool.rb
index fed125902..535271892 100644
--- a/Library/Formula/intltool.rb
+++ b/Library/Formula/intltool.rb
@@ -1,9 +1,7 @@
-require "formula"
-
class Intltool < Formula
- homepage "http://www.freedesktop.org/wiki/Software/intltool"
- url "http://launchpad.net/intltool/trunk/0.50.2/+download/intltool-0.50.2.tar.gz"
- sha1 "7fddbd8e1bf94adbf1bc947cbf3b8ddc2453f8ad"
+ homepage "https://wiki.freedesktop.org/www/Software/intltool"
+ url "https://launchpad.net/intltool/trunk/0.51.0/+download/intltool-0.51.0.tar.gz"
+ sha256 "67c74d94196b153b774ab9f89b2fa6c6ba79352407037c8c14d5aeb334e959cd"
bottle do
sha1 "88c0a273f4bb8c9df2e9250f7272117d55868b06" => :yosemite
@@ -13,7 +11,12 @@ class Intltool < Formula
end
def install
- system "./configure", "--prefix=#{prefix}"
- system "make install"
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-silent-rules"
+ system "make", "install"
+ end
+
+ test do
+ system bin/"intltool-extract", "--help"
end
end