diff options
| author | Jack Nagel | 2014-05-23 16:22:03 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-23 16:22:03 -0500 |
| commit | 2080d53445bb1e3b30874ab4e21f7ee2f6526632 (patch) | |
| tree | 6510d48439ff843aea80e9cca9e776a09ced49cb /Library/Formula | |
| parent | 78c2a7c62afd32ce18e6feade82db629baa579eb (diff) | |
| download | homebrew-2080d53445bb1e3b30874ab4e21f7ee2f6526632.tar.bz2 | |
talloc 2.1.1
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/talloc.rb | 15 |
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 |
