77 lines
2.9 KiB
Ruby
77 lines
2.9 KiB
Ruby
# Reference: https://github.com/macvim-dev/macvim/wiki/building
|
|
class Macvim < Formula
|
|
desc "GUI for vim, made for macOS"
|
|
homepage "https://github.com/macvim-dev/macvim"
|
|
url "https://github.com/macvim-dev/macvim/archive/snapshot-154.tar.gz"
|
|
version "8.1-154"
|
|
sha256 "ac8c46d512aa95f01ef31036dace4b08c490804caad514477977276826676336"
|
|
head "https://github.com/macvim-dev/macvim.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "233e4bcd69d7a6ad83597c7bb9482f43e12562842ffbf6970d9f13f7b78de48a" => :mojave
|
|
sha256 "7604210700981b993386391e825bd15ee9896f186b113a3b24669673ec6f57a7" => :high_sierra
|
|
sha256 "d35385bc331fe14c0cccf624f387ed99dbaf94e491d5dfa946e7a0529f85b932" => :sierra
|
|
end
|
|
|
|
depends_on :xcode => :build
|
|
depends_on "cscope"
|
|
depends_on "lua"
|
|
depends_on "python"
|
|
|
|
conflicts_with "vim",
|
|
:because => "vim and macvim both install vi* binaries"
|
|
|
|
def install
|
|
# Avoid issues finding Ruby headers
|
|
if MacOS.version == :sierra || MacOS.version == :yosemite
|
|
ENV.delete("SDKROOT")
|
|
end
|
|
|
|
# MacVim doesn't have or require any Python package, so unset PYTHONPATH
|
|
ENV.delete("PYTHONPATH")
|
|
|
|
# make sure that CC is set to "clang"
|
|
ENV.clang
|
|
|
|
system "./configure", "--with-features=huge",
|
|
"--enable-multibyte",
|
|
"--with-macarchs=#{MacOS.preferred_arch}",
|
|
"--enable-perlinterp",
|
|
"--enable-rubyinterp",
|
|
"--enable-tclinterp",
|
|
"--enable-terminal",
|
|
"--with-tlib=ncurses",
|
|
"--with-compiledby=Homebrew",
|
|
"--with-local-dir=#{HOMEBREW_PREFIX}",
|
|
"--enable-cscope",
|
|
"--enable-luainterp",
|
|
"--with-lua-prefix=#{Formula["lua"].opt_prefix}",
|
|
"--enable-luainterp",
|
|
"--enable-python3interp"
|
|
system "make"
|
|
|
|
prefix.install "src/MacVim/build/Release/MacVim.app"
|
|
bin.install_symlink prefix/"MacVim.app/Contents/bin/mvim"
|
|
|
|
# Create MacVim vimdiff, view, ex equivalents
|
|
executables = %w[mvimdiff mview mvimex gvim gvimdiff gview gvimex]
|
|
executables += %w[vi vim vimdiff view vimex]
|
|
executables.each { |e| bin.install_symlink "mvim" => e }
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/mvim --version")
|
|
assert_match "+ruby", output
|
|
|
|
# Simple test to check if MacVim was linked to Homebrew's Python 3
|
|
py3_exec_prefix = Utils.popen_read("python3-config", "--exec-prefix")
|
|
assert_match py3_exec_prefix.chomp, output
|
|
(testpath/"commands.vim").write <<~EOS
|
|
:python3 import vim; vim.current.buffer[0] = 'hello python3'
|
|
:wq
|
|
EOS
|
|
system bin/"mvim", "-v", "-T", "dumb", "-s", "commands.vim", "test.txt"
|
|
assert_equal "hello python3", (testpath/"test.txt").read.chomp
|
|
end
|
|
end
|