143 lines
5.4 KiB
Ruby
143 lines
5.4 KiB
Ruby
class Vim < Formula
|
|
desc "Vi 'workalike' with many additional features"
|
|
homepage "https://vim.sourceforge.io/"
|
|
url "https://github.com/vim/vim/archive/v8.0.1150.tar.gz"
|
|
sha256 "c2c7adad6eb786a37b123911faca42015df34958150262ec255cfc7d89834dc1"
|
|
head "https://github.com/vim/vim.git"
|
|
|
|
bottle do
|
|
sha256 "7258bba022462c918f4637f24e82515dc3634457c01a5a1aea5641e0e610e51f" => :high_sierra
|
|
sha256 "8acdff85c7449cf798f9f2a6e482ec810b6c4d7ef71ab8d034ebcba71d6fc905" => :sierra
|
|
sha256 "8c32d0155d4062fa993b6da9150a3377d824c8b8a492a92dff2e9858895f6b2a" => :el_capitan
|
|
end
|
|
|
|
deprecated_option "override-system-vi" => "with-override-system-vi"
|
|
|
|
option "with-override-system-vi", "Override system vi"
|
|
option "with-gettext", "Build vim with National Language Support (translated messages, keymaps)"
|
|
option "with-client-server", "Enable client/server mode"
|
|
|
|
LANGUAGES_OPTIONAL = %w[lua python3 tcl].freeze
|
|
LANGUAGES_DEFAULT = %w[perl python ruby].freeze
|
|
|
|
if MacOS.version >= :mavericks
|
|
option "with-custom-python", "Build with a custom Python 2 instead of the Homebrew version."
|
|
option "with-custom-ruby", "Build with a custom Ruby instead of the Homebrew version."
|
|
option "with-custom-perl", "Build with a custom Perl instead of the Homebrew version."
|
|
end
|
|
|
|
option "with-python3", "Build vim with python3 instead of python[2] support"
|
|
LANGUAGES_OPTIONAL.each do |language|
|
|
option "with-#{language}", "Build vim with #{language} support"
|
|
end
|
|
LANGUAGES_DEFAULT.each do |language|
|
|
option "without-#{language}", "Build vim without #{language} support"
|
|
end
|
|
|
|
depends_on :python => :recommended
|
|
depends_on :python3 => :optional
|
|
depends_on :ruby => "1.8" # Can be compiled against 1.8.x or >= 1.9.3-p385.
|
|
depends_on :perl => "5.3"
|
|
depends_on "lua" => :optional
|
|
depends_on "luajit" => :optional
|
|
depends_on :x11 if build.with? "client-server"
|
|
depends_on "gettext" => :optional
|
|
|
|
conflicts_with "ex-vi",
|
|
:because => "vim and ex-vi both install bin/ex and bin/view"
|
|
|
|
def install
|
|
# https://github.com/Homebrew/homebrew-core/pull/1046
|
|
ENV.delete("SDKROOT")
|
|
|
|
# vim doesn't require any Python package, unset PYTHONPATH.
|
|
ENV.delete("PYTHONPATH")
|
|
|
|
if build.with?("python") && which("python").to_s == "/usr/bin/python" && !MacOS::CLT.installed?
|
|
# break -syslibpath jail
|
|
ln_s "/System/Library/Frameworks", buildpath
|
|
ENV.append "LDFLAGS", "-F#{buildpath}/Frameworks"
|
|
end
|
|
|
|
opts = []
|
|
|
|
(LANGUAGES_OPTIONAL + LANGUAGES_DEFAULT).each do |language|
|
|
opts << "--enable-#{language}interp" if build.with? language
|
|
end
|
|
|
|
if opts.include?("--enable-pythoninterp") && opts.include?("--enable-python3interp")
|
|
# only compile with either python or python3 support, but not both
|
|
# (if vim74 is compiled with +python3/dyn, the Python[3] library lookup segfaults
|
|
# in other words, a command like ":py3 import sys" leads to a SEGV)
|
|
opts -= %w[--enable-pythoninterp]
|
|
end
|
|
|
|
opts << "--disable-nls" if build.without? "gettext"
|
|
opts << "--enable-gui=no"
|
|
|
|
if build.with? "client-server"
|
|
opts << "--with-x"
|
|
else
|
|
opts << "--without-x"
|
|
end
|
|
|
|
if build.with?("lua") || build.with?("luajit")
|
|
ENV["LUA_PREFIX"] = HOMEBREW_PREFIX
|
|
opts << "--enable-luainterp"
|
|
opts << "--with-luajit" if build.with? "luajit"
|
|
|
|
if build.with?("lua") && build.with?("luajit")
|
|
onoe <<-EOS.undent
|
|
Vim will not link against both Luajit & Lua simultaneously.
|
|
Proceeding with Lua.
|
|
EOS
|
|
opts -= %w[--with-luajit]
|
|
end
|
|
end
|
|
|
|
# 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",
|
|
*opts
|
|
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" if build.with? "override-system-vi"
|
|
end
|
|
|
|
test do
|
|
if build.with? "python3"
|
|
(testpath/"commands.vim").write <<-EOS.undent
|
|
: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
|
|
elsif build.with? "python"
|
|
(testpath/"commands.vim").write <<-EOS.undent
|
|
:python import vim; vim.current.buffer[0] = 'hello world'
|
|
:wq
|
|
EOS
|
|
system bin/"vim", "-T", "dumb", "-s", "commands.vim", "test.txt"
|
|
assert_equal "hello world", File.read("test.txt").chomp
|
|
end
|
|
if build.with? "gettext"
|
|
assert_match "+gettext", shell_output("#{bin}/vim --version")
|
|
end
|
|
end
|
|
end
|