homebrew-core/Formula/rpg.rb
Tianyi Cui 8b275c916a Use https for all GitHub URLs
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-18 20:14:27 -08:00

13 lines
307 B
Ruby

require 'formula'
class Rpg <Formula
url 'https://github.com/downloads/rtomayko/rpg/rpg-0.3.0.tar.gz'
homepage 'https://github.com/rtomayko/rpg'
md5 '5e03c55e24ba697bc5bb92ec4c69750c'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end