diff options
author | davidovski <david@davidovski.xyz> | 2022-02-09 20:32:32 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-09 20:32:32 +0000 |
commit | 66008866a08ebe74ac6e7bdfa1770f281211371e (patch) | |
tree | 8c8d79368873c0b32ce0742da237b8c89d53dddc /repo/system/python-six.xibuild | |
parent | b38d10b63e750cc8fee6adb08c74b03936d5e394 (diff) |
added gdb
Diffstat (limited to 'repo/system/python-six.xibuild')
-rw-r--r-- | repo/system/python-six.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/system/python-six.xibuild b/repo/system/python-six.xibuild new file mode 100644 index 0000000..56ba330 --- /dev/null +++ b/repo/system/python-six.xibuild @@ -0,0 +1,16 @@ +#!/bin/bash + +MAKEDEPS=(python ) +DEPS=() + +PKG_VER=1.16.0 +SOURCE=https://github.com/benjaminp/six/archive/refs/tags/$PKG_VER.tar.gz +DESC="A python 2 and 3 compatibility library" + +build() { + python setup.py build +} + +package () { + python3 setup.py install --root="$PKG_DEST" --optimize=1 +} |