homebrew-core/Formula/neatvi.rb
2018-08-21 13:26:21 +02:00

24 lines
825 B
Ruby

class Neatvi < Formula
desc "ex/vi clone for editing bidirectional uft-8 text"
homepage "http://repo.or.cz/w/neatvi.git"
url "http://repo.or.cz/neatvi.git",
:tag => "06", :revision => "5ed4bbc7f12686bb480ab8b2b05c94e12b1c71d8"
head "http://repo.or.cz/neatvi.git"
bottle do
cellar :any_skip_relocation
sha256 "c9dfd1c69ab95ee511c1b27768166e5cba516b6c283e5b168db2451d3865fc44" => :mojave
sha256 "2e34d03e212479064e86e8d1024447badeb61a54205f1fda24f9b6633e22afe7" => :high_sierra
sha256 "339a7880dea5f7ff0e290bc890f95719da7e5ba4b64a7205760c8f6cf64e10a2" => :sierra
sha256 "c773025ad559bb25cc095a7e1efc8950424a4cd86ff81ee4b0093a0e2e3c3c84" => :el_capitan
end
def install
system "make"
bin.install "vi" => "neatvi"
end
test do
pipe_output("#{bin}/neatvi", ":q\n")
end
end