blob: b76b1a6f76890eaeadc726c4743d4c99170620e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Rpg < Formula
homepage 'https://github.com/rtomayko/rpg'
url 'https://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz'
sha1 'acad232da1a560bdc0788bcfa203afcc58f0d7dc'
head 'https://github.com/rtomayko/rpg.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|