mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
16 lines
351 B
Plaintext
16 lines
351 B
Plaintext
# description : Python syntax highlighter (python2)
|
|
# depends : python2-setuptools
|
|
|
|
name=python2-pygments
|
|
version=2.12.0
|
|
release=1
|
|
source="https://pypi.org/packages/source/P/Pygments/Pygments-$version.tar.gz"
|
|
|
|
build() {
|
|
cd Pygments-$version
|
|
python2 setup.py install --root="$PKG" -O1
|
|
|
|
# conflict with python3-pygments
|
|
rm $PKG/usr/bin/pygmentize
|
|
}
|