aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/crf++.rb
blob: 5ea799f02fd3f1f296d02b0a689e758f942cf4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Crfxx < Formula
  url 'http://downloads.sourceforge.net/project/crfpp/crfpp/0.54/CRF++-0.54.tar.gz'
  homepage 'http://crfpp.sourceforge.net/'
  md5 'a3c12c99b25e06d18147d50f0f92e8d3'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make", "CXXFLAGS=#{ENV.cflags}", "install"
  end
end