62125f4354
wordnet uses tcl/tk which requires X11 or there are missing includes. Add a dep on x11. Fixes Homebrew/homebrew#14469 Closes Homebrew/homebrew#15280. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
463 B
Ruby
17 lines
463 B
Ruby
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
|