aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/treecc.rb
blob: fbb0d073bdd7a815fd330b11d8b790e82a19f322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
  sha1 'f905cb535559b0e2d04fa86da14de240f5b1e44f'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    bin.install "treecc"
  end

  def test
    system "#{bin}/treecc", "-v"
  end
end