17 lines
437 B
Plaintext
17 lines
437 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.8.1
|
|
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
|
|
}
|