aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wordnet.rb
blob: fb0b719e46955a6be36097e8112e0c3d955df1b4 (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