homebrew-core/Formula/rpg.rb
Joshua Peek df6e5dfd3e rpg 0.1.0
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-04-19 16:47:48 +02:00

13 lines
292 B
Ruby

require 'formula'
class Rpg <Formula
url 'http://github.com/rtomayko/rpg/tarball/0.1.0'
homepage 'http://github.com/rtomayko/rpg'
md5 'b5bd86db52665a2dbbefe69fad005722'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end