aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-05-23 16:22:03 -0500
committerJack Nagel2014-05-23 16:22:03 -0500
commit2080d53445bb1e3b30874ab4e21f7ee2f6526632 (patch)
tree6510d48439ff843aea80e9cca9e776a09ced49cb /Library/Formula
parent78c2a7c62afd32ce18e6feade82db629baa579eb (diff)
downloadhomebrew-2080d53445bb1e3b30874ab4e21f7ee2f6526632.tar.bz2
talloc 2.1.1
Diffstat (limited to 'Library/Formula')
-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