Skip to content

Instantly share code, notes, and snippets.

@aktowns
Created November 4, 2010 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aktowns/661934 to your computer and use it in GitHub Desktop.
Save aktowns/661934 to your computer and use it in GitHub Desktop.
vim homebrew latest
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