diff options
author | davidovski <david@davidovski.xyz> | 2022-06-27 23:09:07 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-27 23:09:07 +0100 |
commit | f6332a43c35387c4a2dea1746be5fd092890ae0e (patch) | |
tree | d6599f63de04096f3fc21a98e0b3bb39d55a3531 /repo/python-openssl | |
parent | f13e0cac13f90f7f57bce3b26b2e6383de6e4ad2 (diff) |
added lf and iptables
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" +} + |