summaryrefslogtreecommitdiff
path: root/repo/python-installer
diff options
context:
space:
mode:
Diffstat (limited to 'repo/python-installer')
-rw-r--r--repo/python-installer/python-installer.xibuild17
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/python-installer/python-installer.xibuild b/repo/python-installer/python-installer.xibuild
new file mode 100644
index 0000000..232faf8
--- /dev/null
+++ b/repo/python-installer/python-installer.xibuild
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+NAME="python-installer"
+DESC="low-level library for installing from a Python wheel distribution"
+
+MAKEDEPS="python"
+
+PKG_VER=0.5.1
+SOURCE="https://files.pythonhosted.org/packages/source/i/installer/installer-$PKG_VER.tar.gz"
+
+build () {
+ python3 setup.py build
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$PKG_DEST"
+}