treecc 0.3.10
Closes Homebrew/homebrew#10238. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
7bd6769f70
commit
0212c4d943
1 changed files with 17 additions and 0 deletions
17
Formula/treecc.rb
Normal file
17
Formula/treecc.rb
Normal 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
|
Loading…
Reference in a new issue