aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/link-grammar.rb
blob: 5efcea524c5902cb8dfe688c7e5805763e3944bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class LinkGrammar < Formula
  url 'http://www.abisource.com/downloads/link-grammar/4.7.4/link-grammar-4.7.4.tar.gz'
  homepage 'http://www.abisource.com/projects/link-grammar/'
  md5 'e90e702a953641713a1292db20677bd2'

  depends_on 'pkg-config' => :build

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

  def test
    system "#{bin}/link-parser", "--version"
  end
end