blob: cd724bd0f5d0fe2696ef044ab552c8b065ec2c3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require "formula"
class Talloc < Formula
  homepage "http://talloc.samba.org/"
  url "http://www.samba.org/ftp/talloc/talloc-2.1.1.tar.gz"
  sha1 "380bb786274dfd1a4a8179d31cd88cbee15c97bf"
  conflicts_with "samba", :because => "both install `include/talloc.h`"
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-rpath",
                          "--without-gettext",
                          "--disable-python"
    system "make install"
  end
end
  |