aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/talloc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/talloc.rb')
-rw-r--r--Library/Formula/talloc.rb15
1 files changed, 9 insertions, 6 deletions
diff --git a/Library/Formula/talloc.rb b/Library/Formula/talloc.rb
index eeb70bf4e..cd724bd0f 100644
--- a/Library/Formula/talloc.rb
+++ b/Library/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