7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
408 B
Ruby
14 lines
408 B
Ruby
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
|