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

class Rpg <Formula
  url 'http://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz'
  homepage 'http://github.com/rtomayko/rpg'
  md5 '5e03c55e24ba697bc5bb92ec4c69750c'

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