diff options
| author | Teng Siong Ong | 2012-09-01 22:56:39 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-02 14:32:20 -0700 |
| commit | b420ba34d18a25baa5861d30309627b16819b0bd (patch) | |
| tree | e37572f31af159df1e8a6cc8c73f42b325a19e9d /Library/Formula/macvim.rb | |
| parent | 55dbcc15905664092b805e7822fb8c66d5ca0f8e (diff) | |
| download | homebrew-b420ba34d18a25baa5861d30309627b16819b0bd.tar.bz2 | |
macvim snapshot 65
Closes #14631.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/macvim.rb')
| -rw-r--r-- | Library/Formula/macvim.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index ce4e82371..8c05cbd72 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -2,9 +2,9 @@ require 'formula' class Macvim < Formula homepage 'http://code.google.com/p/macvim/' - url 'https://github.com/b4winckler/macvim/tarball/snapshot-64' - version '7.3-64' - sha1 'c8bf2d758f52a1173112138fefbf4e5ab08015ff' + url 'https://github.com/b4winckler/macvim/tarball/snapshot-65' + version '7.3-65' + sha1 'fa5f6e0febe1ebcf5320a6ff8bcf4c7e39eccf8e' head 'https://github.com/b4winckler/macvim.git', :branch => 'master' @@ -23,6 +23,10 @@ class Macvim < Formula arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386' ENV['ARCHFLAGS'] = "-arch #{arch}" + # If building for 10.8, make sure that CC is set to "clang". + # Reference: https://github.com/b4winckler/macvim/wiki/building + ENV['CC'] = "clang" if MacOS.mountain_lion? + args = %W[ --with-features=huge --with-tlib=ncurses |
