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

class Wordnet <Formula
  url 'http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.bz2'
  homepage 'http://wordnet.princeton.edu/'
  md5 '89b4db7c6840ce69a8e315a3f83d996b'

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