treecc 0.3.10

Closes Homebrew/homebrew#10238.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Silvio Henrique Ferreira 2012-02-16 17:39:45 -02:00 committed by Adam Vandenberg
parent 7bd6769f70
commit 0212c4d943

17
Formula/treecc.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class Treecc < Formula
url 'http://download.savannah.gnu.org/releases/dotgnu-pnet/treecc-0.3.10.tar.gz'
homepage 'http://gnu.org/software/dotgnu/treecc/treecc.html'
md5 'def09f2132f87d6a38a0718e2f14ee61'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
bin.install "treecc"
end
def test
system "#{bin}/treecc -v"
end
end