homebrew-core/Formula/mobile-shell.rb

42 lines
1.0 KiB
Ruby

require "formula"
class MobileShell < Formula
homepage "http://mosh.mit.edu/"
url "https://mosh.mit.edu/mosh-1.2.4.tar.gz"
sha256 "e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46"
revision 2
head do
url "https://github.com/keithw/mosh.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
option "with-check", "Run build-time tests"
depends_on "openssl"
depends_on "pkg-config" => :build
depends_on "protobuf"
def install
system "./autogen.sh" if build.head?
# teach mosh to locate mosh-client without referring
# PATH to support launching outside shell e.g. via launcher
inreplace "scripts/mosh", "'mosh-client", "\'#{bin}/mosh-client"
# Upstream prefers O2:
# https://github.com/keithw/mosh/blob/master/README.md
ENV.O2
system "./configure", "--prefix=#{prefix}", "--enable-completion"
system "make", "check" if build.with? "check"
system "make", "install"
end
test do
ENV["TERM"]="xterm"
system "#{bin}/mosh-client", "-c"
end
end