2009-12-26 14:11:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Macvim < Formula
|
2011-03-13 19:34:21 +00:00
|
|
|
homepage 'http://code.google.com/p/macvim/'
|
2012-09-02 05:56:39 +00:00
|
|
|
url 'https://github.com/b4winckler/macvim/tarball/snapshot-65'
|
|
|
|
version '7.3-65'
|
|
|
|
sha1 'fa5f6e0febe1ebcf5320a6ff8bcf4c7e39eccf8e'
|
2012-02-26 04:55:03 +00:00
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/b4winckler/macvim.git', :branch => 'master'
|
2009-12-26 14:11:03 +00:00
|
|
|
|
2012-08-09 23:28:35 +00:00
|
|
|
option "custom-icons", "Try to generate custom document icons"
|
|
|
|
option "override-system-vim", "Override system vim"
|
2012-08-30 15:44:28 +00:00
|
|
|
option "with-cscope", "Build with Cscope support"
|
|
|
|
option "with-lua", "Build with Lua scripting support"
|
2012-08-09 23:28:35 +00:00
|
|
|
|
2012-08-30 15:44:28 +00:00
|
|
|
depends_on 'cscope' if build.include? 'with-cscope'
|
|
|
|
depends_on 'lua' if build.include? 'with-lua'
|
2010-11-26 19:20:24 +00:00
|
|
|
|
2012-09-25 19:04:05 +00:00
|
|
|
depends_on :xcode # For xcodebuild.
|
|
|
|
|
2009-12-26 14:11:03 +00:00
|
|
|
def install
|
2011-03-19 16:23:07 +00:00
|
|
|
# Set ARCHFLAGS so the Python app (with C extension) that is
|
|
|
|
# used to create the custom icons will not try to compile in
|
|
|
|
# PPC support (which isn't needed in Homebrew-supported systems.)
|
2011-03-29 15:31:47 +00:00
|
|
|
arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386'
|
2011-03-13 18:27:30 +00:00
|
|
|
ENV['ARCHFLAGS'] = "-arch #{arch}"
|
|
|
|
|
2012-09-02 05:56:39 +00:00
|
|
|
# If building for 10.8, make sure that CC is set to "clang".
|
|
|
|
# Reference: https://github.com/b4winckler/macvim/wiki/building
|
2012-09-05 04:04:01 +00:00
|
|
|
ENV['CC'] = "clang" if MacOS.version >= :mountain_lion
|
2012-09-02 05:56:39 +00:00
|
|
|
|
2012-07-09 19:40:39 +00:00
|
|
|
args = %W[
|
|
|
|
--with-features=huge
|
|
|
|
--with-tlib=ncurses
|
|
|
|
--enable-multibyte
|
|
|
|
--with-macarchs=#{arch}
|
|
|
|
--enable-perlinterp
|
|
|
|
--enable-pythoninterp
|
|
|
|
--enable-rubyinterp
|
|
|
|
--enable-tclinterp
|
|
|
|
--with-ruby-command=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
|
|
|
|
]
|
2010-11-26 19:20:24 +00:00
|
|
|
|
2012-08-30 15:44:28 +00:00
|
|
|
args << "--enable-cscope" if build.include? "with-cscope"
|
2010-11-26 19:20:24 +00:00
|
|
|
|
2012-08-30 15:44:28 +00:00
|
|
|
if build.include? "with-lua"
|
2012-02-27 05:28:00 +00:00
|
|
|
args << "--enable-luainterp"
|
|
|
|
args << "--with-lua-prefix=#{HOMEBREW_PREFIX}"
|
|
|
|
end
|
|
|
|
|
2010-11-26 19:20:24 +00:00
|
|
|
system "./configure", *args
|
2010-08-14 21:00:47 +00:00
|
|
|
|
2012-02-26 04:55:03 +00:00
|
|
|
# Building custom icons fails for many users, so off by default.
|
2012-08-09 23:28:35 +00:00
|
|
|
unless build.include? "custom-icons"
|
2010-08-14 21:00:47 +00:00
|
|
|
inreplace "src/MacVim/icons/Makefile", "$(MAKE) -C makeicns", ""
|
|
|
|
inreplace "src/MacVim/icons/make_icons.py", "dont_create = False", "dont_create = True"
|
|
|
|
end
|
|
|
|
|
2012-02-26 04:55:03 +00:00
|
|
|
# Reference: https://github.com/b4winckler/macvim/wiki/building
|
2012-06-17 22:41:41 +00:00
|
|
|
cd 'src/MacVim/icons' do
|
|
|
|
system "make getenvy"
|
|
|
|
end
|
2010-12-29 21:03:13 +00:00
|
|
|
|
2009-12-26 14:11:03 +00:00
|
|
|
system "make"
|
|
|
|
|
|
|
|
prefix.install "src/MacVim/build/Release/MacVim.app"
|
|
|
|
inreplace "src/MacVim/mvim", /^# VIM_APP_DIR=\/Applications$/,
|
2012-08-06 21:15:15 +00:00
|
|
|
"VIM_APP_DIR=#{prefix}"
|
2009-12-26 14:11:03 +00:00
|
|
|
bin.install "src/MacVim/mvim"
|
|
|
|
|
|
|
|
# Create MacVim vimdiff, view, ex equivalents
|
2012-09-07 03:22:14 +00:00
|
|
|
executables = %w[mvimdiff mview mvimex gvim gvimdiff gview gvimex]
|
2012-08-09 23:28:35 +00:00
|
|
|
executables += %w[vi vim vimdiff view vimex] if build.include? "override-system-vim"
|
2011-02-02 12:34:59 +00:00
|
|
|
executables.each {|f| ln_s bin+'mvim', bin+f}
|
2009-12-26 14:11:03 +00:00
|
|
|
end
|
|
|
|
|
2011-03-13 19:34:21 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
MacVim.app installed to:
|
|
|
|
#{prefix}
|
|
|
|
|
|
|
|
To link the application to a normal Mac OS X location:
|
2011-04-04 23:56:47 +00:00
|
|
|
brew linkapps
|
2011-03-13 19:34:21 +00:00
|
|
|
or:
|
2011-07-29 15:08:04 +00:00
|
|
|
ln -s #{prefix}/MacVim.app /Applications
|
2011-03-13 19:34:21 +00:00
|
|
|
EOS
|
2009-12-26 14:11:03 +00:00
|
|
|
end
|
|
|
|
end
|