blob: 1aca160c5dc43ee7f259a8e039d99bb530a35359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="python"
DEPS="python-cryptography python-sphinx python-sphinx-python-rtd-python-theme python-flaky python-pretend python-pytest"
PKG_VER=22.0.0
SOURCE=https://files.pythonhosted.org/packages/source/p/pyopenssl/pyopenssl-$PKG_VER.tar.gz
MAKEDEPS="python"
DESC="Python wrapper module around the OpenSSL library"
build() {
python setup.py build
}
package () {
python setup.py install --root="$PKG_DEST" --optimize=1
}
|