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

class Crfxx < Formula
  homepage 'http://code.google.com/p/crfpp/'
  url 'https://crfpp.googlecode.com/files/CRF++-0.58.tar.gz'
  sha1 '979a686a6d73d14cdd0c96a310888fb6bffd2e91'

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