wordnet: new package (#10526)
This commit is contained in:
parent
871e7f525c
commit
1be258a587
1 changed files with 33 additions and 0 deletions
33
var/spack/repos/builtin/packages/wordnet/package.py
Normal file
33
var/spack/repos/builtin/packages/wordnet/package.py
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
||||||
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||||
|
|
||||||
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
|
class Wordnet(AutotoolsPackage):
|
||||||
|
"""WordNet is a large lexical database of English. Nouns, verbs, adjectives
|
||||||
|
and adverbs are grouped into sets of cognitive synonyms (synsets), each
|
||||||
|
expressing a distinct concept. """
|
||||||
|
|
||||||
|
homepage = "https://wordnet.princeton.edu/"
|
||||||
|
url = "http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz"
|
||||||
|
|
||||||
|
version('3.0', sha256='640db279c949a88f61f851dd54ebbb22d003f8b90b85267042ef85a3781d3a52')
|
||||||
|
|
||||||
|
depends_on('tk')
|
||||||
|
depends_on('tcl')
|
||||||
|
|
||||||
|
def configure_args(self):
|
||||||
|
args = []
|
||||||
|
args.append('--with-tk=%s' % self.spec['tk'].prefix.lib)
|
||||||
|
args.append('--with-tcl=%s' % self.spec['tcl'].prefix.lib)
|
||||||
|
if self.spec.satisfies('^tcl@8.6:'):
|
||||||
|
args.append('CPPFLAGS=-DUSE_INTERP_RESULT')
|
||||||
|
|
||||||
|
return args
|
||||||
|
|
||||||
|
def setup_environment(self, spack_env, run_env):
|
||||||
|
run_env.set('WNHOME', self.prefix)
|
||||||
|
run_env.set('WNSEARCHDIR', self.prefix.dict)
|
Loading…
Reference in a new issue