homebrew-core/Formula/crf++.rb
Brett Koonce f1101d1e2e CRF++ 0.58
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-25 21:16:58 -07:00

12 lines
356 B
Ruby

require 'formula'
class Crfxx < Formula
homepage 'http://code.google.com/p/crfpp/'
url 'http://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