forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vim74.rb
125 lines (104 loc) · 4.84 KB
/
vim74.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
class Vim74 < Formula
desc "Vi \"workalike\" with many additional features"
homepage "http://www.vim.org/"
url "https://github.com/vim/vim/archive/v7.4.2367.tar.gz"
sha256 "a9ae4031ccd73cc60e771e8bf9b3c8b7f10f63a67efce7f61cd694cd8d7cda5c"
bottle do
sha256 "756846cbc93de6d7d52f2b160aa13cc92e79ad87cb3489ca46613d93b4aba823" => :sierra
sha256 "5e276eaeb95437cc53829f0c38996ea9d69f272b6868378ced5d95f8884c41f4" => :el_capitan
sha256 "2550cf8ea38c0ea5076b2fd1616ff0abeb1b429c8c1b291b1635f7bc09c73b8b" => :yosemite
end
option "with-override-system-vi", "Override system vi"
option "without-nls", "Build vim without National Language Support (translated messages, keymaps)"
option "with-client-server", "Enable client/server mode"
LANGUAGES_OPTIONAL = %w[lua mzscheme 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"
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")
ENV["LUA_PREFIX"] = HOMEBREW_PREFIX if build.with?("lua") || build.with?("luajit")
# 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? "nls"
opts << "--enable-gui=no"
if build.with? "client-server"
opts << "--with-x"
else
opts << "--without-x"
end
if build.with? "luajit"
opts << "--with-luajit"
opts << "--enable-luainterp"
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",
"--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
# Simple test to check if Vim was linked to Python version in $PATH
if build.with? "python"
vim_path = bin/"vim"
# Get linked framework using otool
otool_output = `otool -L #{vim_path} | grep -m 1 Python`.gsub(/\(.*\)/, "").strip.chomp
# Expand the link and get the python exec path
vim_framework_path = Pathname.new(otool_output).realpath.dirname.to_s.chomp
system_framework_path = `python-config --exec-prefix`.chomp
assert_equal system_framework_path, vim_framework_path
end
end
end