46 lines
1.5 KiB
Ruby
46 lines
1.5 KiB
Ruby
class Etsh < Formula
|
|
desc "Two ports of /bin/sh from V6 UNIX (circa 1975)"
|
|
homepage "https://v6shell.org/"
|
|
url "https://v6shell.org/src/etsh-4.7.0.tar.gz"
|
|
sha256 "1dfada170cdcc6427f8b8177d0ec9dafe505c05607d0da8dd4b5f6ac6fc54087"
|
|
version_scheme 1
|
|
head "https://github.com/JNeitzel/v6shell.git", :branch => "current"
|
|
|
|
bottle do
|
|
sha256 "44c79bf06f2d51aea1213fec26e88a85f917a3a1b52a8264ed7388093e3c6f26" => :sierra
|
|
sha256 "d080b4e8b262dd768447f8f669846a80d72b7bc48502df2ccc942b1d655d31e8" => :el_capitan
|
|
sha256 "415f1c50168c7f3a5d6b18ebd8db94c2aa99cffdd73340dc3f92c9b88823e0ad" => :yosemite
|
|
end
|
|
|
|
option "with-examples", "Build with shell examples"
|
|
|
|
conflicts_with "teleport", :because => "both install `tsh` binaries"
|
|
|
|
resource "examples" do
|
|
url "https://v6shell.org/v6scripts/v6scripts-20160128.tar.gz"
|
|
sha256 "c23251137de67b042067b68f71cd85c3993c566831952af305f1fde93edcaf4d"
|
|
end
|
|
|
|
def install
|
|
system "./configure"
|
|
system "make", "install", "PREFIX=#{prefix}", "SYSCONFDIR=#{etc}", "MANDIR=#{man1}"
|
|
bin.install_symlink "etsh" => "osh"
|
|
bin.install_symlink "tsh" => "sh6"
|
|
|
|
if build.with? "examples"
|
|
resource("examples").stage do
|
|
ENV.prepend_path "PATH", bin
|
|
system "./INSTALL", libexec
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match "brew!", shell_output("#{bin}/etsh -c 'echo brew!'").strip
|
|
|
|
if build.with? "examples"
|
|
ENV.prepend_path "PATH", libexec
|
|
assert_match "1 3 5 7 9 11 13 15 17 19", shell_output("#{libexec}/counts").strip
|
|
end
|
|
end
|
|
end
|