homebrew-core/Formula/talloc.rb
Adam Vandenberg 67a73bd6fe talloc 2.0.8
2013-01-27 19:18:00 -08:00

12 lines
307 B
Ruby

require 'formula'
class Talloc < Formula
homepage 'http://talloc.samba.org/'
url 'http://www.samba.org/ftp/talloc/talloc-2.0.8.tar.gz'
sha1 '5ca7710a3f95a1db873c97fcf83f92dddfd57907'
def install
system "./configure", "--prefix=#{prefix}", "--disable-rpath"
system "make install"
end
end