aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/check.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/check.rb b/Library/Formula/check.rb
new file mode 100644
index 000000000..8ed858b14
--- /dev/null
+++ b/Library/Formula/check.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Check <Formula
+ url 'http://downloads.sourceforge.net/project/check/check/0.9.8/check-0.9.8.tar.gz'
+ homepage 'http://check.sourceforge.net/'
+ md5 '5d75e9a6027cde79d2c339ef261e7470'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end