forked from ports/contrib
16 lines
462 B
Plaintext
16 lines
462 B
Plaintext
# Description: Python interface to the OpenSSL library.
|
|
# URL: http://pypi.python.org/pypi/pyOpenSSL
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-cryptography
|
|
|
|
name=python3-pyopenssl
|
|
version=24.0.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpenSSL-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pyOpenSSL-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
|
|
}
|