blob: f5c6fb0e476cb3a9d8a5abd50468a2d72d6289f7 (
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.13/check-0.9.13.tar.gz"
sha1 "09f682d2239b1353818b74d06099a17460450240"
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|