homebrew-core/Formula/talloc.rb

18 lines
499 B
Ruby
Raw Normal View History

2014-05-23 21:22:03 +00:00
require "formula"
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"
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
def install
2014-05-23 21:22:03 +00:00
system "./configure", "--prefix=#{prefix}",
"--disable-rpath",
"--without-gettext",
"--disable-python"
system "make install"
end
end