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.2.0050.tar.gz" sha256 "ddff156d654c5468f52cac5c582ed55e0ff7b40baf2955c4760076c854be62e1" head "https://github.com/vim/vim.git" bottle do sha256 "b154d053ab549707d7af2b37d59f191f7b504e3050a50eb26d2a1159a63afe29" => :catalina sha256 "4335a439316e5e0baeb0c86d30fa307de0406f49b11c20c4a92779f5a70a25fd" => :mojave sha256 "261e9692c3e7fd8de17efaa228466d925c8b7898634f1cb3c6da1805303e2095" => :high_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" conflicts_with "macvim", :because => "vim and macvim both install vi* binaries" 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