diff options
author | davidovski <david@davidovski.xyz> | 2022-02-01 23:48:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-01 23:48:51 +0000 |
commit | ec1ad426592e481c3dcf65ce65ff75c103ae1513 (patch) | |
tree | 3899e8b2eebc8e74824c8623f906396acf9a80b5 /repo/system | |
parent | fca119330aa3b814fd6c907dd5098f412993f873 (diff) |
added python markdown safe
Diffstat (limited to 'repo/system')
-rw-r--r-- | repo/system/python-markupsafe.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/system/python-markupsafe.xibuild b/repo/system/python-markupsafe.xibuild new file mode 100644 index 0000000..41ddce0 --- /dev/null +++ b/repo/system/python-markupsafe.xibuild @@ -0,0 +1,16 @@ +#!/bin/bash + +MAKEDEPS=(python) +DEPS=(python) + +PKG_VER=2.0.1 +SOURCE=https://files.pythonhosted.org/packages/source/M/MarkupSafe/MarkupSafe-$PKG_VER.tar.gz +DESC="Implements a XML/HTML/XHTML Markup safe string for Python" + +build() { + python setup.py build +} + +package () { + python3 setup.py install --root="$PKG_DEST" --optimize=1 +} |