homebrew-core/Formula/etsh.rb
2018-11-02 11:40:31 +01:00

28 lines
1,006 B
Ruby

class Etsh < Formula
desc "Two ports of /bin/sh from V6 UNIX (circa 1975)"
homepage "https://etsh.io/"
url "https://etsh.io/src/etsh-5.2.0.tar.gz"
sha256 "af561b7fa2f9eb872e2e5a71a8f8e5479f8bb5829a8ec1534f0240475c3dfe5e"
version_scheme 1
head "https://github.com/JNeitzel/v6shell.git", :branch => "current"
bottle do
rebuild 1
sha256 "2721aef5aa5cd1d4cf4e6bd97289f1bf5f441bb7d3871045b67612a39b6c56b1" => :mojave
sha256 "dded9864f32e60a05557e6fc59011844fbc9652cb38fa4f14e61496dff0f8fb0" => :high_sierra
sha256 "af8a9bd05dcd73c313762fc0a17622854983cfc1fb42b3ae858c6bdf2427c42a" => :sierra
end
conflicts_with "teleport", :because => "both install `tsh` binaries"
def install
system "./configure"
system "make", "install", "PREFIX=#{prefix}", "SYSCONFDIR=#{etc}", "MANDIR=#{man1}"
bin.install_symlink "etsh" => "osh"
bin.install_symlink "tsh" => "sh6"
end
test do
assert_match "brew!", shell_output("#{bin}/etsh -c 'echo brew!'").strip
end
end