blob: 9eb6170c72197477106f6d00320e95c8f72a7354 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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'
conflicts_with 'samba', :because => 'both install `include/talloc.h`'
def install
system "./configure", "--prefix=#{prefix}", "--disable-rpath"
system "make install"
end
end
|