diff options
Diffstat (limited to 'repo/python/python-pygments')
-rw-r--r-- | repo/python/python-pygments/python-pygments.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/python/python-pygments/python-pygments.xibuild b/repo/python/python-pygments/python-pygments.xibuild new file mode 100644 index 0000000..8a19bcd --- /dev/null +++ b/repo/python/python-pygments/python-pygments.xibuild @@ -0,0 +1,16 @@ +#!/bin/sh + +MAKEDEPS="python " +DEPS="" + +PKG_VER=2.11.2 +SOURCE=https://pypi.org/packages/source/P/Pygments/Pygments-$PKG_VER.tar.gz +DESC="Python syntax highlighter" + +build() { + python setup.py build +} + +package () { + python setup.py install --root="$PKG_DEST" --optimize=1 +} |