b01ef7cb80
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
353 B
Ruby
14 lines
353 B
Ruby
require 'formula'
|
|
|
|
class Rpg < Formula
|
|
url 'https://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz'
|
|
head 'https://github.com/rtomayko/rpg.git'
|
|
homepage 'https://github.com/rtomayko/rpg'
|
|
md5 '5e03c55e24ba697bc5bb92ec4c69750c'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|