diff options
| author | Adam Vandenberg | 2014-05-31 08:11:59 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-31 08:13:10 -0700 |
| commit | 67d03d776108fa285bc5eb69dd48637141be0fdd (patch) | |
| tree | 57d024ae02bffe6ca0316344bc769d5b1a8f1ef8 /Library/Formula | |
| parent | 52c8510854e43208d437a3d49b2ba572cca0f5ca (diff) | |
| download | homebrew-67d03d776108fa285bc5eb69dd48637141be0fdd.tar.bz2 | |
vowpal-wabbit: quotes
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/vowpal-wabbit.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/vowpal-wabbit.rb b/Library/Formula/vowpal-wabbit.rb index 9d3514f2f..a1b1ff73f 100644 --- a/Library/Formula/vowpal-wabbit.rb +++ b/Library/Formula/vowpal-wabbit.rb @@ -1,24 +1,24 @@ -require 'formula' +require "formula" class VowpalWabbit < Formula - homepage 'https://github.com/JohnLangford/vowpal_wabbit' - url 'https://github.com/JohnLangford/vowpal_wabbit/archive/7.6.tar.gz' - sha1 '854f6e54568f6c2e849d43b0f6cd1cc286ec965d' + homepage "https://github.com/JohnLangford/vowpal_wabbit" + url "https://github.com/JohnLangford/vowpal_wabbit/archive/7.6.tar.gz" + sha1 "854f6e54568f6c2e849d43b0f6cd1cc286ec965d" head do - url 'https://github.com/JohnLangford/vowpal_wabbit.git' + url "https://github.com/JohnLangford/vowpal_wabbit.git" depends_on :autoconf depends_on :automake depends_on :libtool end - depends_on 'boost' => :build + depends_on "boost" => :build def install if build.head? - inreplace 'autogen.sh' do |s| - s.gsub! '/usr/share/aclocal', "#{HOMEBREW_PREFIX}/share/aclocal" + inreplace "autogen.sh" do |s| + s.gsub! "/usr/share/aclocal", "#{HOMEBREW_PREFIX}/share/aclocal" end system "./autogen.sh" end |
