blob: 7fba194b4f3e1993959f2ae18809686b5e824ed1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | 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"
  bottle do
    cellar :any
    sha1 "95140108cb3675eedb25493d9a6ae51681b293eb" => :yosemite
    sha1 "48d9ed5b9dc8d86b9787d2911df70a4dd2ef1307" => :mavericks
    sha1 "d573466b7e520fcb1cf46fba2d7cd1314a3f1025" => :mountain_lion
  end
  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
 |