blob: 5684eb2380964f2cb088ae02d03336ee3e3d6b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Cunit < Formula
url 'http://downloads.sourceforge.net/project/cunit/CUnit/2.1-2/CUnit-2.1-2-src.tar.bz2'
homepage 'http://cunit.sourceforge.net/'
sha1 '6c2d0627eb64c09c7140726d6bf814cf531a3ce0'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|