aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/link-grammar.rb
blob: 7d64bc5022833a2f904cd6b28a1e8f4eb78d2952 (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 "link-parser", "--version"
  end
end