homebrew-core/Formula/rpg.rb
Joshua Peek e76e13ff05 rpg 0.2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-04-27 07:25:42 -07:00

13 lines
305 B
Ruby

require 'formula'
class Rpg <Formula
url 'http://github.com/downloads/rtomayko/rpg/rpg-0.2.0.tar.gz'
homepage 'http://github.com/rtomayko/rpg'
md5 '7bf07b59a436b8f2677d660ed6f0afca'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end