blob: 105dd8fd7e6da7389195c815f65201f777acd5f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Wordnet < Formula
homepage 'http://wordnet.princeton.edu/'
url 'http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.bz2'
sha1 'aeb7887cb4935756cf77deb1ea86973dff0e32fb'
depends_on :x11
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
ENV.deparallelize
system "make install"
end
end
|