Skip to content

Instantly share code, notes, and snippets.

@mybeky
Created April 12, 2012 02:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mybeky/2364361 to your computer and use it in GitHub Desktop.
Save mybeky/2364361 to your computer and use it in GitHub Desktop.
Vim formula for Homebrew with python, ruby and clipboard enabled
require 'formula'
class Vim < Formula
homepage 'http://www.vim.org/'
url 'https://vim.googlecode.com/hg/', :revision => '2d107086903a'
version '7.3.584'
def install
system "./configure",
"--with-features=huge",
"--disable-gui",
"--without-x",
"--disable-netbeans",
"--disable-arabic",
"--disable-farsi",
"--enable-rubyinterp",
"--enable-pythoninterp",
"--with-tlib=ncurses",
"--enable-multibyte",
"--with-ruby-command=/usr/local/bin/ruby",
"--enable-clipboard=yes",
"--enable-xterm_clipboard=yes",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment