blob: 7864b706458ced6cfcfd8d0510d54c9ea60a9beb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | require "formula"
class Check < Formula
  homepage "http://check.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/check/check/0.9.14/check-0.9.14.tar.gz"
  sha1 "4b79e2d485d014ddb438e322b64235347d57b0ff"
  bottle do
    cellar :any
    sha1 "5f7d4c82f1c2bdb365718e97299efd47ec9c7272" => :mavericks
    sha1 "2390f4c06a316a18cd4a9164fcd510c1ffb9a276" => :mountain_lion
    sha1 "99d8dfd79c4498071ac91dcc782b5b27f2182614" => :lion
  end
  option :universal
  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
 |