homebrew-core/Formula/mg.rb

35 lines
980 B
Ruby

class Mg < Formula
desc "Small Emacs-like editor"
homepage "https://devio.us/~bcallah/mg/"
url "https://devio.us/~bcallah/mg/mg-20160815.tar.gz"
sha256 "d4cf4cc5e811f13bfcebd0240d074344d0a6e8c27e5a5d9be9c5e53f328a416a"
bottle do
cellar :any_skip_relocation
sha256 "20bba78b053638d1e05c80a678f4107aa928760c0caab7b3b8a112b6ec624afa" => :el_capitan
sha256 "b75b2d2ce24746207c5d0253745a992ae6e6a83f190a32ba5fd4aedd08028bb5" => :yosemite
end
depends_on :macos => :yosemite # older versions don't support fstatat(2)
conflicts_with "mg3a", :because => "both install `mg` binaries"
def install
system "make", "install", "PREFIX=#{prefix}", "MANDIR=#{man}"
end
test do
(testpath/"command.sh").write <<-EOS.undent
#!/usr/bin/expect -f
set timeout -1
spawn #{bin}/mg
match_max 100000
send -- "\u0018\u0003"
expect eof
EOS
chmod 0755, testpath/"command.sh"
system testpath/"command.sh"
end
end