diff options
Diffstat (limited to 'repo/python-openssl')
-rw-r--r-- | repo/python-openssl/python-openssl.xibuild | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/repo/python-openssl/python-openssl.xibuild b/repo/python-openssl/python-openssl.xibuild new file mode 100644 index 0000000..db56448 --- /dev/null +++ b/repo/python-openssl/python-openssl.xibuild @@ -0,0 +1,18 @@ +#!/bin/sh + +NAME="python-openssl" +DESC="Python3 wrapper module around the OpenSSL library" + +MAKEDEPS="" + +PKG_VER=21.0.0 +SOURCE="https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpenSSL-$PKG_VER.tar.gz" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$PKG_DEST" +} + |