0daf9c8f67
rc is based on the shell from Plan 9 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
403 B
Ruby
17 lines
403 B
Ruby
require 'formula'
|
|
|
|
class Rc < Formula
|
|
url 'ftp://rc.quanstro.net/pub/rc-1.7.2.tgz'
|
|
homepage 'http://doc.cat-v.org/plan_9/4th_edition/papers/rc'
|
|
md5 '4a85e4b4e3a0a5d3803109c5b2dce710'
|
|
|
|
def install
|
|
system "./configure","--prefix=#{prefix}", "--mandir=#{man}", "--with-editline"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/rc -c 'echo $*' Hello!"
|
|
end
|
|
end
|