20 lines
556 B
Plaintext
20 lines
556 B
Plaintext
# Description: Python interface to WordNet.
|
|
# URL: http://osteele.com/projects/pywordnet/
|
|
# Maintainer: James Mills prologic at shortcircuit dot net dot au
|
|
# Packager: James Mills prologic at shortcircuit dot net dot au
|
|
#
|
|
# Depends on: python, wordnet
|
|
|
|
name=pywordnet
|
|
version=2.0.1
|
|
release=2
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz \
|
|
wordnet.py-patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p1 wordnet.py < $SRC/wordnet.py-patch
|
|
python setup.py install --root=$PKG
|
|
chown -R root:root $PKG
|
|
}
|