mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 06:44:44 +00:00
17 lines
381 B
Plaintext
17 lines
381 B
Plaintext
# description : Python syntax highlighter (python2)
|
|
# depends : python2
|
|
|
|
name=python2-pygments
|
|
version=2.3.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/P/Pygments/Pygments-$version.tar.gz)
|
|
md5sum=(e95ccbb45697f3a40687c4b1c0498409)
|
|
|
|
build() {
|
|
cd Pygments-$version
|
|
python2 setup.py install --root="$PKG" -O1
|
|
|
|
# conflict with python3-pygments
|
|
rm $PKG/usr/bin/pygmentize
|
|
}
|