2010-06-01 20:48:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rpl < Formula
|
2010-06-01 20:48:37 +00:00
|
|
|
url 'ftp://ftp2.laffeycomputer.com/pub/current_builds/rpl-1.4.1.tar.gz'
|
|
|
|
homepage 'http://www.laffeycomputer.com/rpl.html'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '6c67ecd2307f378b44b697411b0ab65bc5d2cdaa'
|
2010-06-01 20:48:37 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|