From ccc722b7ed330198d82a3cf28ead76d6d107a70a Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 6 Jun 2022 21:25:48 +0000 Subject: added java --- repo/python-cffi/python-cffi.xibuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 repo/python-cffi/python-cffi.xibuild (limited to 'repo/python-cffi/python-cffi.xibuild') diff --git a/repo/python-cffi/python-cffi.xibuild b/repo/python-cffi/python-cffi.xibuild new file mode 100644 index 0000000..ca5c1c4 --- /dev/null +++ b/repo/python-cffi/python-cffi.xibuild @@ -0,0 +1,31 @@ +#!/bin/sh + +NAME="python-cffi" +DESC="Foreign function interface for calling C code from Python3" + +MAKEDEPS="python libffi" + +PKG_VER=1.15.0 +SOURCE="https://files.pythonhosted.org/packages/source/c/cffi/cffi-$PKG_VER.tar.gz" + +ADDITIONAL=" +musl-compat.patch +" + +prepare () { + apply_patches +} + +build() { + python3 setup.py build +} + +check() { + python3 setup.py build_ext -i + python3 -m pytest --disable-pytest-warnings c/ testing/ || true +} + +package() { + python3 setup.py install --prefix=/usr --root="$PKG_DEST" +} + -- cgit v1.2.1