mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 09:26:32 +00:00
16 lines
481 B
Plaintext
16 lines
481 B
Plaintext
# description : Snowball stemming library collection for Python.
|
|
# homepage : https://github.com/shibukawa/snowball_py/
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-snowballstemmer
|
|
version=2.2.0
|
|
release=1
|
|
source="$name-$version.tar.gz::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
|
|
}
|