2012-10-20 02:07:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Vim < Formula
|
|
|
|
homepage 'http://www.vim.org/'
|
2013-05-22 04:45:33 +00:00
|
|
|
# This package tracks debian-unstable: http://packages.debian.org/unstable/vim
|
2013-07-16 15:27:12 +00:00
|
|
|
url 'http://ftp.de.debian.org/debian/pool/main/v/vim/vim_7.3.923.orig.tar.gz'
|
|
|
|
sha1 'f308d219dd9c6b56e84109ace4e7487a101088f5'
|
|
|
|
|
|
|
|
devel do
|
2013-08-03 18:36:47 +00:00
|
|
|
url 'http://ftp.de.debian.org/debian/pool/main/v/vim/vim_7.4b.004.orig.tar.gz'
|
|
|
|
version '7.4b.004'
|
|
|
|
sha1 'af303d0833dcfb63792639bf0d98cd0025276e09'
|
2013-07-16 15:27:12 +00:00
|
|
|
end
|
|
|
|
|
2012-10-20 02:07:59 +00:00
|
|
|
head 'https://vim.googlecode.com/hg/'
|
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
# We only have special support for finding depends_on :python, but not yet for
|
|
|
|
# :ruby, :perl etc., so we use the standard environment that leaves the
|
|
|
|
# PATH as the user has set it right now.
|
|
|
|
env :std
|
2012-10-20 22:35:08 +00:00
|
|
|
|
2013-06-11 08:46:35 +00:00
|
|
|
LANGUAGES = %w(lua mzscheme perl python tcl ruby)
|
2012-10-30 15:50:46 +00:00
|
|
|
DEFAULT_LANGUAGES = %w(ruby python)
|
|
|
|
|
2013-04-19 18:55:19 +00:00
|
|
|
option "override-system-vi", "Override system vi"
|
2013-06-11 08:46:35 +00:00
|
|
|
option "disable-nls", "Build vim without National Language Support (translated messages, keymaps)"
|
|
|
|
|
2012-10-30 15:50:46 +00:00
|
|
|
LANGUAGES.each do |language|
|
|
|
|
option "with-#{language}", "Build vim with #{language} support"
|
|
|
|
option "without-#{language}", "Build vim without #{language} support"
|
|
|
|
end
|
|
|
|
|
2013-06-11 08:46:35 +00:00
|
|
|
depends_on :hg => :build if build.head?
|
|
|
|
depends_on :python => :recommended
|
2013-03-17 18:20:01 +00:00
|
|
|
|
2012-10-20 02:07:59 +00:00
|
|
|
def install
|
2012-10-30 15:50:46 +00:00
|
|
|
ENV['LUA_PREFIX'] = HOMEBREW_PREFIX
|
|
|
|
|
|
|
|
language_opts = LANGUAGES.map do |language|
|
2013-01-06 19:27:28 +00:00
|
|
|
if DEFAULT_LANGUAGES.include? language and !build.include? "without-#{language}"
|
2012-10-30 15:50:46 +00:00
|
|
|
"--enable-#{language}interp"
|
2013-01-06 19:27:28 +00:00
|
|
|
elsif build.include? "with-#{language}"
|
2012-10-30 15:50:46 +00:00
|
|
|
"--enable-#{language}interp"
|
|
|
|
end
|
|
|
|
end.compact
|
|
|
|
|
2013-03-17 18:20:01 +00:00
|
|
|
opts = language_opts
|
|
|
|
opts << "--disable-nls" if build.include? "disable-nls"
|
|
|
|
|
2013-06-11 16:47:29 +00:00
|
|
|
# Avoid that vim always links System's Python even if configure tells us
|
|
|
|
# it has found a brewed Python. Verify with `otool -L`.
|
|
|
|
if python && python.brewed?
|
|
|
|
ENV.prepend 'LDFLAGS', "-F#{python.framework}"
|
|
|
|
end
|
2013-06-11 08:46:35 +00:00
|
|
|
|
2013-02-14 05:45:50 +00:00
|
|
|
# XXX: Please do not submit a pull request that hardcodes the path
|
|
|
|
# to ruby: vim can be compiled against 1.8.x or 1.9.3-p385 and up.
|
|
|
|
# If you have problems with vim because of ruby, ensure a compatible
|
|
|
|
# version is first in your PATH when building vim.
|
|
|
|
|
|
|
|
# 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".
|
2012-10-20 02:07:59 +00:00
|
|
|
system "./configure", "--prefix=#{HOMEBREW_PREFIX}",
|
|
|
|
"--mandir=#{man}",
|
|
|
|
"--enable-gui=no",
|
|
|
|
"--without-x",
|
|
|
|
"--enable-multibyte",
|
|
|
|
"--with-tlib=ncurses",
|
|
|
|
"--enable-cscope",
|
2012-10-30 15:50:46 +00:00
|
|
|
"--with-features=huge",
|
2013-03-17 18:20:01 +00:00
|
|
|
*opts
|
2012-10-20 02:07:59 +00:00
|
|
|
system "make"
|
2013-02-22 16:21:36 +00:00
|
|
|
# If stripping the binaries is not enabled, vim will segfault with
|
|
|
|
# statically-linked interpreters like ruby
|
|
|
|
# http://code.google.com/p/vim/issues/detail?id=114&thanks=114&ts=1361483471
|
|
|
|
system "make", "install", "prefix=#{prefix}", "STRIP=/usr/bin/true"
|
2013-04-19 18:55:19 +00:00
|
|
|
ln_s bin+'vim', bin+'vi' if build.include? 'override-system-vi'
|
2012-10-20 02:07:59 +00:00
|
|
|
end
|
|
|
|
end
|