talloc 2.1.1

master
Jack Nagel 2014-05-23 16:22:03 -05:00
parent b150cf5669
commit 4a651af440
1 changed files with 9 additions and 6 deletions

View File

@ -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