Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
macvim snapshot 65
Browse files Browse the repository at this point in the history
Closes #14631.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
siong1987 authored and adamv committed Sep 2, 2012
1 parent 55dbcc1 commit b420ba3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Library/Formula/macvim.rb
Expand Up @@ -2,9 +2,9 @@

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'

Expand All @@ -23,6 +23,10 @@ def install
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
Expand Down

0 comments on commit b420ba3

Please sign in to comment.