blob: 4df6116a9f0bcf086c7190ef2ea971b9649ec472 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | require 'formula'
class Confuse < Formula
  homepage 'http://www.nongnu.org/confuse/'
  url 'http://savannah.nongnu.org/download/confuse/confuse-2.7.tar.gz'
  sha1 'b3f74f9763e6c9012476dbd323d083af4be34cad'
  bottle do
    cellar :any
    sha1 "1364f86a7dfa199fee07f273f6e3b4945b9db02a" => :yosemite
    sha1 "d1edb26d0b30a9d85453cf811a5acf582dba3d56" => :mavericks
    sha1 "9ede76f809eb464d96a8f703fb74c1678fc0c48d" => :mountain_lion
  end
  depends_on 'pkg-config' => :build
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
 |