homebrew-core/Formula/vim.rb
2018-11-24 21:58:42 +00:00

74 lines
2.9 KiB
Ruby

class Vim < Formula
desc "Vi 'workalike' with many additional features"
homepage "https://www.vim.org/"
# vim should only be updated every 50 releases on multiples of 50
url "https://github.com/vim/vim/archive/v8.1.0500.tar.gz"
sha256 "4ba0e6e099c4a6565e1c510ef3a26e452eed1b3ff8a8e02ada9b66c164da785e"
revision 1
head "https://github.com/vim/vim.git"
bottle do
sha256 "2fb8c80818bfba57b7868697a0c446e2d06d4330c3bebdda266abffa6c9dbe79" => :mojave
sha256 "0c459bb997b8e70f68d563cec3e23dced023ba009b08e1a8a8a827861fdde44f" => :high_sierra
sha256 "a7843cb521569ca8586fc34fcfc2317e0437e5d93ac2987c1911d0872f3bb015" => :sierra
end
depends_on "gettext"
depends_on "lua"
depends_on "perl"
depends_on "python"
depends_on "ruby"
conflicts_with "ex-vi",
:because => "vim and ex-vi both install bin/ex and bin/view"
def install
ENV.prepend_path "PATH", Formula["python"].opt_libexec/"bin"
# https://github.com/Homebrew/homebrew-core/pull/1046
ENV.delete("SDKROOT")
# vim doesn't require any Python package, unset PYTHONPATH.
ENV.delete("PYTHONPATH")
# We specify HOMEBREW_PREFIX as the prefix to make vim look in the
# the right place (HOMEBREW_PREFIX/share/vim/{vimrc,vimfiles}) for
# system vimscript files. We specify the normal installation prefix
# when calling "make install".
# Homebrew will use the first suitable Perl & Ruby in your PATH if you
# build from source. Please don't attempt to hardcode either.
system "./configure", "--prefix=#{HOMEBREW_PREFIX}",
"--mandir=#{man}",
"--enable-multibyte",
"--with-tlib=ncurses",
"--enable-cscope",
"--enable-terminal",
"--with-compiledby=Homebrew",
"--enable-perlinterp",
"--enable-rubyinterp",
"--enable-python3interp",
"--enable-gui=no",
"--without-x",
"--enable-luainterp",
"--with-lua-prefix=#{Formula["lua"].opt_prefix}"
system "make"
# Parallel install could miss some symlinks
# https://github.com/vim/vim/issues/1031
ENV.deparallelize
# If stripping the binaries is enabled, vim will segfault with
# statically-linked interpreters like ruby
# https://github.com/vim/vim/issues/114
system "make", "install", "prefix=#{prefix}", "STRIP=#{which "true"}"
bin.install_symlink "vim" => "vi"
end
test do
(testpath/"commands.vim").write <<~EOS
:python3 import vim; vim.current.buffer[0] = 'hello python3'
:wq
EOS
system bin/"vim", "-T", "dumb", "-s", "commands.vim", "test.txt"
assert_equal "hello python3", File.read("test.txt").chomp
assert_match "+gettext", shell_output("#{bin}/vim --version")
end
end