summaryrefslogtreecommitdiff
path: root/repo/python-fasteners/python-fasteners.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/python-fasteners/python-fasteners.xibuild')
-rw-r--r--repo/python-fasteners/python-fasteners.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/python-fasteners/python-fasteners.xibuild b/repo/python-fasteners/python-fasteners.xibuild
new file mode 100644
index 0000000..ff56baf
--- /dev/null
+++ b/repo/python-fasteners/python-fasteners.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+NAME="python-fasteners"
+DESC="A python package that provides useful locks"
+
+MAKEDEPS="python"
+
+PKG_VER=0.16.3
+SOURCE="https://files.pythonhosted.org/packages/source/f/fasteners/fasteners-$PKG_VER.tar.gz"
+
+build() {
+ python3 setup.py build
+}
+
+check() {
+ python3 setup.py check
+}
+
+package() {
+ python3 setup.py install --prefix=/usr --root="$PKG_DEST"
+}
+