Created
April 12, 2012 02:52
-
-
Save mybeky/2364361 to your computer and use it in GitHub Desktop.
Vim formula for Homebrew with python, ruby and clipboard enabled
This file contains hidden or 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 | |
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