summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/pypi.xibuild16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/pypi.xibuild b/templates/pypi.xibuild
new file mode 100644
index 0000000..20042b3
--- /dev/null
+++ b/templates/pypi.xibuild
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+MAKEDEPS="python"
+DEPS=""
+
+PKG_VER=%version%
+SOURCE=%url%
+DESC="%desc%"
+
+build() {
+ python setup.py build
+}
+
+package () {
+ python setup.py install --root="$PKG_DEST" --optimize=1
+}