2019-11-19 08:50:37 +11:00
|
|
|
# Description: Python syntax highlighter
|
2020-06-01 15:45:48 +00:00
|
|
|
# URL: https://pygments.org/
|
2023-08-06 19:18:08 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-11-20 18:14:39 +01:00
|
|
|
# Depends on: python3-hatchling
|
2019-11-19 08:50:37 +11:00
|
|
|
|
|
|
|
name=python3-pygments
|
2023-11-22 18:50:29 +01:00
|
|
|
version=2.17.2
|
2020-12-31 12:46:54 +00:00
|
|
|
release=1
|
2023-11-20 18:14:39 +01:00
|
|
|
source=(https://pypi.org/packages/source/p/pygments/pygments-$version.tar.gz)
|
2019-11-19 08:50:37 +11:00
|
|
|
|
|
|
|
build() {
|
2023-11-20 18:14:39 +01:00
|
|
|
cd pygments-$version
|
2019-11-19 08:50:37 +11:00
|
|
|
|
2023-08-06 19:18:08 +02:00
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
2019-11-19 08:50:37 +11:00
|
|
|
}
|