diff options
Diffstat (limited to 'repo/python/python-packaging.xibuild')
-rw-r--r-- | repo/python/python-packaging.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/python/python-packaging.xibuild b/repo/python/python-packaging.xibuild new file mode 100644 index 0000000..3dab5bf --- /dev/null +++ b/repo/python/python-packaging.xibuild @@ -0,0 +1,16 @@ +#!/bin/sh + +MAKEDEPS="python " +DEPS="" + +PKG_VER=21.3 +SOURCE=https://github.com/pypa/packaging/archive/$PKG_VER/python-packaging-$PKG_VER.tar.gz +DESC="Core utilities for Python packages" + +build() { + python setup.py build +} + +package () { + python setup.py install --root="$PKG_DEST" --optimize=1 +} |