diff options
| author | Mike Arthur | 2009-10-22 16:09:34 +0100 |
|---|---|---|
| committer | Max Howell | 2009-10-23 19:12:21 +0100 |
| commit | 7cf2d9559a6b22da5c8afcd0dd5bd26db9892bb3 (patch) | |
| tree | cfdf440f8bb54cc41affa04a34843df2e18333a3 /Library/Formula/cppunit.rb | |
| parent | e072ea2fc9877bed03f6d04493e1638409b4b3ab (diff) | |
| download | homebrew-7cf2d9559a6b22da5c8afcd0dd5bd26db9892bb3.tar.bz2 | |
Add CppUnit brew.
Diffstat (limited to 'Library/Formula/cppunit.rb')
| -rw-r--r-- | Library/Formula/cppunit.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/cppunit.rb b/Library/Formula/cppunit.rb new file mode 100644 index 000000000..b4ce111fb --- /dev/null +++ b/Library/Formula/cppunit.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Cppunit <Formula + url 'http://downloads.sourceforge.net/project/cppunit/cppunit/1.12.1/cppunit-1.12.1.tar.gz' + homepage 'http://sourceforge.net/apps/mediawiki/cppunit/' + md5 'bd30e9cf5523cdfc019b94f5e1d7fd19' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
