aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKeenan Brock2014-04-19 22:58:56 -0400
committerAdam Vandenberg2014-04-19 20:47:44 -0700
commit3bac79f3a70c2e79382f004f8fd3baa90e593acd (patch)
tree62f54b42b96b80cfcc7e6bc622851bd1a2e573a1 /Library/Formula
parent4371b49ac45f783096a5f4cf36a5b7ca748ba7f2 (diff)
downloadhomebrew-3bac79f3a70c2e79382f004f8fd3baa90e593acd.tar.bz2
talloc 2.1.0
upgrade talloc to 2.1.0 Closes #28158. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/talloc.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/talloc.rb b/Library/Formula/talloc.rb
index 9eb6170c7..eeb70bf4e 100644
--- a/Library/Formula/talloc.rb
+++ b/Library/Formula/talloc.rb
@@ -2,13 +2,13 @@ require 'formula'
class Talloc < Formula
homepage 'http://talloc.samba.org/'
- url 'http://www.samba.org/ftp/talloc/talloc-2.0.8.tar.gz'
- sha1 '5ca7710a3f95a1db873c97fcf83f92dddfd57907'
+ url 'http://www.samba.org/ftp/talloc/talloc-2.1.0.tar.gz'
+ sha1 'd079597f3f02a7ca3716645728a8a46016a1dd7d'
conflicts_with 'samba', :because => 'both install `include/talloc.h`'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-rpath"
+ system "./configure", "--prefix=#{prefix}", "--disable-rpath", "--without-gettext"
system "make install"
end
end