mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
14 lines
392 B
Plaintext
14 lines
392 B
Plaintext
# description : Python syntax highlighter
|
|
# depends : python3-setuptools python3-build python3-installer python3-wheel
|
|
|
|
name=python3-pygments
|
|
version=2.16.1
|
|
release=1
|
|
source="$name-$version.tar.gz::https://pypi.org/packages/source/P/Pygments/Pygments-$version.tar.gz"
|
|
|
|
build() {
|
|
cd Pygments-$version
|
|
python3 -m build --wheel --no-isolation
|
|
python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|