2006-11-20 07:26:53 +10:00
|
|
|
# Description: Python interface to WordNet.
|
|
|
|
# URL: http://osteele.com/projects/pywordnet/
|
2007-01-20 12:21:06 +10:00
|
|
|
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
|
|
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
2006-11-20 07:26:53 +10:00
|
|
|
#
|
|
|
|
# Depends on: python, wordnet
|
2006-11-14 09:01:22 +10:00
|
|
|
|
|
|
|
name=pywordnet
|
|
|
|
version=2.0.1
|
2007-03-25 00:54:23 +10:00
|
|
|
release=3
|
2006-11-14 09:01:22 +10:00
|
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz \
|
2006-11-20 07:26:53 +10:00
|
|
|
wordnet.py-patch)
|
2006-11-14 09:01:22 +10:00
|
|
|
|
|
|
|
build() {
|
2006-11-20 07:26:53 +10:00
|
|
|
cd $name-$version
|
|
|
|
patch -p1 wordnet.py < $SRC/wordnet.py-patch
|
|
|
|
python setup.py install --root=$PKG
|
|
|
|
chown -R root:root $PKG
|
2006-11-14 09:01:22 +10:00
|
|
|
}
|