Created
January 21, 2011 18:47
-
-
Save joshuaclayton/790173 to your computer and use it in GitHub Desktop.
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 | |
# Get stable versions from hg repo instead of downloading an increasing | |
# number of separate patches. | |
url 'https://vim.googlecode.com/hg/', :revision => '538cd32208' | |
version '7.3.011' | |
homepage 'http://www.vim.org/' | |
head 'https://vim.googlecode.com/hg/' | |
def install | |
system "./configure", "--prefix=#{prefix}", | |
"--mandir=#{man}", | |
"--enable-gui=no", | |
"--without-x", | |
"--disable-nls", | |
"--enable-multibyte", | |
"--with-tlib=ncurses", | |
"--with-features=huge" | |
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