aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vowpal-wabbit.rb
blob: fdf0ce5ae6525f477b9cfeb776f41d76fc8715a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'formula'

class VowpalWabbit < Formula
  homepage 'https://github.com/JohnLangford/vowpal_wabbit'
  url 'https://github.com/JohnLangford/vowpal_wabbit/archive/7.5.tar.gz'
  sha1 '2f7602a54df2e6aa2d8a54baaaceb47098a74dce'

  head do
    url 'https://github.com/JohnLangford/vowpal_wabbit.git'

    depends_on :autoconf
    depends_on :automake
    depends_on :libtool
  end

  depends_on 'boost' => :build

  def install
    if build.head?
      inreplace 'autogen.sh' do |s|
        s.gsub! '/usr/share/aclocal', "#{HOMEBREW_PREFIX}/share/aclocal"
      end
      system "./autogen.sh"
    end

    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end