homebrew-core/Formula/talloc.rb
Keenan Brock 436862544e talloc 2.1.0
upgrade talloc to 2.1.0

Closes Homebrew/homebrew#28158.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-19 20:47:44 -07:00

14 lines
401 B
Ruby

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'
conflicts_with 'samba', :because => 'both install `include/talloc.h`'
def install
system "./configure", "--prefix=#{prefix}", "--disable-rpath", "--without-gettext"
system "make install"
end
end