homebrew-core/Formula/crf++.rb
makigumo 715e7ec44e crf++: update homepage and download url
Closes Homebrew/homebrew#39003.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2015-04-25 09:32:13 -07:00

11 lines
379 B
Ruby

class Crfxx < Formula
homepage "https://taku910.github.io/crfpp/"
url "https://drive.google.com/uc?id=0B4y35FiV1wh7QVR6VXJ5dWExSTQ&export=download"
version "0.58"
sha1 "979a686a6d73d14cdd0c96a310888fb6bffd2e91"
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "CXXFLAGS=#{ENV.cflags}", "install"
end
end