rpg 0.1.0

Signed-off-by: David Höppner <0xffea@gmail.com>
master
Joshua Peek 2010-04-19 08:44:47 -05:00 committed by David Höppner
parent 64acc8b5be
commit df6e5dfd3e
1 changed files with 13 additions and 0 deletions

13
Formula/rpg.rb Normal file
View File

@ -0,0 +1,13 @@
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