homebrew-core/Formula/ex-vi.rb

17 lines
610 B
Ruby
Raw Normal View History

class ExVi < Formula
desc "UTF8-friendly version of tradition vi"
homepage "http://ex-vi.sourceforge.net/"
url "https://downloads.sourceforge.net/project/ex-vi/ex-vi/050325/ex-050325.tar.bz2"
sha256 "da4be7cf67e94572463b19e56850aa36dc4e39eb0d933d3688fe8574bb632409"
conflicts_with "vim",
:because => "ex-vi and vim both install bin/ex and bin/view"
def install
system "make", "install", "INSTALL=/usr/bin/install",
"PREFIX=#{prefix}",
"PRESERVEDIR=/var/tmp/vi.recover",
"TERMLIB=ncurses"
end
end