2010-04-19 13:44:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Rpg <Formula
|
2010-04-27 13:39:33 +00:00
|
|
|
url 'http://github.com/downloads/rtomayko/rpg/rpg-0.2.0.tar.gz'
|
2010-04-19 13:44:47 +00:00
|
|
|
homepage 'http://github.com/rtomayko/rpg'
|
2010-04-27 13:39:33 +00:00
|
|
|
md5 '7bf07b59a436b8f2677d660ed6f0afca'
|
2010-04-19 13:44:47 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|