mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
14 lines
386 B
Plaintext
14 lines
386 B
Plaintext
# description : General parsing module for Python
|
|
# depends : python3-installer python3-build python3-flit-core
|
|
|
|
name=python3-pyparsing
|
|
version=3.1.1
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/p/${name#*-}/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 -m build -nw
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|