blob: e81cb4b2ccbb9f8bccddb06c67d699a0544c0b97 (
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 'http://downloads.sourceforge.net/project/check/check/0.9.10/check-0.9.10.tar.gz'
sha1 '56da5197bcff07d42da18f9ed1d55bff638a6896'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|