aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/check.rb
blob: 0f2d66150dd0e06c4078caef6d65f70307b67ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Check < Formula
  homepage 'http://check.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/check/check/0.9.12/check-0.9.12.tar.gz'
  sha1 'eaa4c1c3273901b63c7bf054d402b554ad8dd9c9'

  option :universal

  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end