Created
November 4, 2010 00:18
-
-
Save aktowns/661934 to your computer and use it in GitHub Desktop.
vim homebrew latest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Vim <Formula | |
url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' | |
homepage 'http://www.vim.org' | |
md5 '5b9510a17074e2b37d8bb38ae09edbf2' | |
depends_on 'ncursesw' | |
depends_on 'cscope' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}", "--enable-cscope", | |
"--enable-rubyinterp", "--enable-luainterp", | |
"--with-vim-name=nvim", "--with-compiledby=homebrew", | |
"--with-tlib=ncursesw", "--enable-multibyte", "--with-features=huge" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment