homebrew-core/Formula/rpg.rb

16 lines
363 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Rpg < Formula
homepage 'https://github.com/rtomayko/rpg'
2013-01-28 05:22:46 +00:00
url 'https://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz'
sha1 'acad232da1a560bdc0788bcfa203afcc58f0d7dc'
2013-01-28 05:22:46 +00:00
head 'https://github.com/rtomayko/rpg.git'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end