homebrew-core/Formula/rpg.rb
Jesse Storimer bdae288ae5 Bump rpg version to 0.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-24 11:36:08 -07:00

13 lines
305 B
Ruby

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