diff --git a/Formula/talloc.rb b/Formula/talloc.rb index eeb70bf4e7..cd724bd0f5 100644 --- a/Formula/talloc.rb +++ b/Formula/talloc.rb @@ -1,14 +1,17 @@ -require 'formula' +require "formula" class Talloc < Formula - homepage 'http://talloc.samba.org/' - url 'http://www.samba.org/ftp/talloc/talloc-2.1.0.tar.gz' - sha1 'd079597f3f02a7ca3716645728a8a46016a1dd7d' + homepage "http://talloc.samba.org/" + url "http://www.samba.org/ftp/talloc/talloc-2.1.1.tar.gz" + sha1 "380bb786274dfd1a4a8179d31cd88cbee15c97bf" - conflicts_with 'samba', :because => 'both install `include/talloc.h`' + conflicts_with "samba", :because => "both install `include/talloc.h`" def install - system "./configure", "--prefix=#{prefix}", "--disable-rpath", "--without-gettext" + system "./configure", "--prefix=#{prefix}", + "--disable-rpath", + "--without-gettext", + "--disable-python" system "make install" end end