17 lines
493 B
Plaintext
17 lines
493 B
Plaintext
# Description: Snowball stemming library collection for Python.
|
|
# URL: https://github.com/shibukawa/snowball_py/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-snowballstemmer
|
|
version=2.2.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/S/Snowballstemmer/${name#*-}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|