2014-05-23 21:22:03 +00:00
|
|
|
require "formula"
|
2010-11-21 23:22:12 +00:00
|
|
|
|
|
|
|
class Talloc < Formula
|
2014-05-23 21:22:03 +00:00
|
|
|
homepage "http://talloc.samba.org/"
|
|
|
|
url "http://www.samba.org/ftp/talloc/talloc-2.1.1.tar.gz"
|
|
|
|
sha1 "380bb786274dfd1a4a8179d31cd88cbee15c97bf"
|
2010-11-21 23:22:12 +00:00
|
|
|
|
2014-05-23 21:22:03 +00:00
|
|
|
conflicts_with "samba", :because => "both install `include/talloc.h`"
|
2013-11-15 07:36:13 +00:00
|
|
|
|
2010-11-21 23:22:12 +00:00
|
|
|
def install
|
2014-05-23 21:22:03 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-rpath",
|
|
|
|
"--without-gettext",
|
|
|
|
"--disable-python"
|
2011-04-26 15:28:02 +00:00
|
|
|
system "make install"
|
2010-11-21 23:22:12 +00:00
|
|
|
end
|
|
|
|
end
|