blob: e22e924e534e623e7a55707aaced8cd40560e37b (
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://sourceforge.net/projects/check/files/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
|