diff options
Diffstat (limited to 'repo/python-logbook/python-logbook.xibuild')
-rw-r--r-- | repo/python-logbook/python-logbook.xibuild | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/python-logbook/python-logbook.xibuild b/repo/python-logbook/python-logbook.xibuild new file mode 100644 index 0000000..c18b334 --- /dev/null +++ b/repo/python-logbook/python-logbook.xibuild @@ -0,0 +1,19 @@ +#!/bin/sh + +NAME="python-logbook" +DESC="Logging replacement for Python" + +MAKEDEPS="python cython" + +PKG_VER=1.5.3 +SOURCE="https://github.com/getlogbook/logbook/archive/$PKG_VER.tar.gz" + +build() { + cython logbook/_speedups.pyx + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$PKG_DEST" +} + |