blob: 23b39a26cff61559d8707a35659389cbc250b3f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Talloc < Formula
url 'http://www.samba.org/ftp/talloc/talloc-2.0.7.tar.gz'
homepage 'http://talloc.samba.org/'
sha1 'fb84ee401b6e094503056b030ce31fcbcc9d06aa'
def install
system "./configure", "--prefix=#{prefix}", "--disable-rpath"
system "make install"
end
end
|