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