homebrew-core/Formula/vis.rb

58 lines
1.7 KiB
Ruby
Raw Normal View History

class Vis < Formula
desc "Vim-like text editor"
homepage "https://github.com/martanne/vis"
head "https://github.com/martanne/vis.git"
stable do
url "https://github.com/martanne/vis/archive/v0.4.tar.gz"
sha256 "f11ba41cfb86dd39475960abfd12469de4da0ccfdb941f1d7680d89d987694c5"
patch do
url "https://github.com/martanne/vis/commit/73ef4885.patch?full_index=1"
sha256 "639f2b5ff708327c5d6b5b7d198b24cb4a71a72ae935a92bd765bd532c755603"
end
end
2018-01-19 13:49:40 +00:00
bottle do
sha256 "0be7b581e3cb539b4f9b7d1bf935f2693be3d4f0fcef7104a38c2a4c9ba3bb52" => :high_sierra
sha256 "7e0af91f28bf576b74790ba694401b78d086f383fa6cc7a9b1333170e0b8c08f" => :sierra
sha256 "2030656393b697680ffc8b794f0350916beaa8dff0475e5bd2d46a00d86c7692" => :el_capitan
end
depends_on "libtermkey"
depends_on "lua"
resource "lpeg" do
url "https://luarocks.org/manifests/gvvaughan/lpeg-1.0.1-1.src.rock", :using => :nounzip
sha256 "149be31e0155c4694f77ea7264d9b398dd134eca0d00ff03358d91a6cfb2ea9d"
end
def install
luapath = libexec/"vendor"
ENV["LUA_PATH"] = "#{luapath}/share/lua/5.3/?.lua"
ENV["LUA_CPATH"] = "#{luapath}/lib/lua/5.3/?.so"
resource("lpeg").stage do
system "luarocks", "build", "lpeg", "--tree=#{luapath}"
end
system "./configure", "--prefix=#{libexec}"
system "make", "install"
(bin/"vise").write <<~EOS
#!/bin/sh
VIS_BASE=#{libexec}
VIS_PATH=$VIS_BASE/share/vis $VIS_BASE/bin/vis $@
EOS
end
def caveats; <<~EOS
To avoid a name conflict with the macOS system utility /usr/bin/vis,
this text editor must be invoked by calling `vise` ("vis-editor").
EOS
end
test do
assert_match "vis v#{version} +curses +lua", shell_output("#{bin}/vise -v 2>&1")
end
end