aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-07-09 12:40:39 -0700
committerAdam Vandenberg2012-07-09 12:40:39 -0700
commit4dca98d8ff617ecaeead4abe7f7b307454bbb996 (patch)
tree3f1190734fbb1c190736b55fd1ae8ea9445cbbd0 /Library/Formula
parent7eeda758d35b0ff13403aee059974f26aa50b640 (diff)
downloadhomebrew-4dca98d8ff617ecaeead4abe7f7b307454bbb996.tar.bz2
MacVim: use sha1 and %W[]
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/macvim.rb22
1 files changed, 12 insertions, 10 deletions
diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb
index 1b6a34e30..080d67c2c 100644
--- a/Library/Formula/macvim.rb
+++ b/Library/Formula/macvim.rb
@@ -4,7 +4,7 @@ class Macvim < Formula
homepage 'http://code.google.com/p/macvim/'
url 'https://github.com/b4winckler/macvim/tarball/snapshot-64'
version '7.3-64'
- md5 '5bdc0bc618b3179130f846f8d0f81283'
+ sha1 'c8bf2d758f52a1173112138fefbf4e5ab08015ff'
head 'https://github.com/b4winckler/macvim.git', :branch => 'master'
@@ -33,15 +33,17 @@ class Macvim < Formula
arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386'
ENV['ARCHFLAGS'] = "-arch #{arch}"
- args = ["--with-features=huge",
- "--with-tlib=ncurses",
- "--enable-multibyte",
- "--with-macarchs=#{arch}",
- "--enable-perlinterp",
- "--enable-pythoninterp",
- "--enable-rubyinterp",
- "--enable-tclinterp",
- "--with-ruby-command=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby"]
+ args = %W[
+ --with-features=huge
+ --with-tlib=ncurses
+ --enable-multibyte
+ --with-macarchs=#{arch}
+ --enable-perlinterp
+ --enable-pythoninterp
+ --enable-rubyinterp
+ --enable-tclinterp
+ --with-ruby-command=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
+ ]
args << "--enable-cscope" if ARGV.include? "--with-cscope"