homebrew-core/Formula/rc.rb

29 lines
1.1 KiB
Ruby

class Rc < Formula
desc "Implementation of the AT&T Plan 9 shell"
homepage "http://doc.cat-v.org/plan_9/4th_edition/papers/rc"
url "ftp://rc.quanstro.net/pub/rc-1.7.2.tgz"
sha256 "89487c6c9f5ad0fdae658bf9564f6e920935bbdeabf63abdbf69b7c46f7ee40c"
bottle do
cellar :any_skip_relocation
sha256 "0ad08319f2f791cbb7fe5a15bc13cea4fe3a30871f682a6562e0e38c499443dd" => :high_sierra
sha256 "0dd69cd7b8cf4e9c7f0baaeeaa7d64393e192a2e38d798de7869b6f8efcca446" => :sierra
sha256 "34b3426f92ff6b50490a479cb55473e227b67351a853e8627c8e487b4fe21989" => :el_capitan
sha256 "1628bbad2fa8417318ee488a748a1ae769606baf950300c895e4592cbe013edf" => :yosemite
sha256 "6cd2807091b6e1e8359ebedab8d211f00d0ac84825f16d116bd4500c6dd5b3f4" => :mavericks
sha256 "c09ab4ed5d45ef028bb235e246e32b7e5d0603952a7c9e068ba64faf78e16cf1" => :mountain_lion
end
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}",
"--with-editline"
system "make"
system "make", "install"
end
test do
system "#{bin}/rc", "-c", "echo Hello!"
end
end