2010-11-21 23:22:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Talloc < Formula
|
|
|
|
homepage 'http://talloc.samba.org/'
|
2013-01-28 03:17:50 +00:00
|
|
|
url 'http://www.samba.org/ftp/talloc/talloc-2.0.8.tar.gz'
|
|
|
|
sha1 '5ca7710a3f95a1db873c97fcf83f92dddfd57907'
|
2010-11-21 23:22:12 +00:00
|
|
|
|
|
|
|
def install
|
2011-10-26 01:09:45 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-rpath"
|
2011-04-26 15:28:02 +00:00
|
|
|
system "make install"
|
2010-11-21 23:22:12 +00:00
|
|
|
end
|
|
|
|
end
|