df6e5dfd3e
Signed-off-by: David Höppner <0xffea@gmail.com>
13 lines
292 B
Ruby
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
|