blob: 93c30efef0e0801a31fd6f259a917a36d0750fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|