blob: b87eb71cafae8b12c3fb4ab3fc8943ca5b6a2733 (
plain)
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
|
require 'formula'
class Macvim <Formula
head 'git://repo.or.cz/MacVim.git'
homepage 'http://code.google.com/p/macvim'
def install
# MacVim's Xcode project gets confused by $CC
# Disable it until someone figures out why it fails.
ENV['CC'] = nil
ENV['CFLAGS'] = nil
ENV['CXX'] = nil
ENV['CXXFLAGS'] = nil
system "./configure",
"--with-macsdk=#{MACOS_VERSION}",
# Add some features
"--with-features=huge",
"--enable-perlinterp",
"--enable-pythoninterp",
"--enable-rubyinterp",
"--enable-tclinterp"
system "make"
prefix.install "src/MacVim/build/Release/MacVim.app"
inreplace "src/MacVim/mvim", /^# VIM_APP_DIR=\/Applications$/,
"VIM_APP_DIR=#{prefix}"
bin.install "src/MacVim/mvim"
# Create MacVim vimdiff, view, ex equivalents
%w[mvimdiff mview mvimex].each do |f|
(bin + f).make_symlink("#{bin}/mvim")
end
end
def caveats
"MacVim.app installed to #{prefix}."
end
end
|