aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rmcast.rb
blob: 01a19c5afd489baee9f97be5b8a423b7848dc69d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Rmcast < Formula
  homepage 'http://www.land.ufrj.br/tools/rmcast/rmcast.html'
  url 'http://www.land.ufrj.br/tools/rmcast/download/rmcast-2.0.0.tar.gz'
  sha1 '43146066d3199fc811b207e427135d2a14b8e971'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end