17 lines
438 B
Plaintext
17 lines
438 B
Plaintext
# Description: Python syntax highlighter
|
|
# URL: https://pygments.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-pygments
|
|
version=2.14.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/P/Pygments/Pygments-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Pygments-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|