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

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

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