blob: ab8c70239c970dd88f3b170995a4097405beb2dd (
plain)
1 # Description: A package designed to expose cryptographic recipes and primitives to Python developers.
2 # URL: https://pypi.org/project/cryptography/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-asn1crypto python3-cffi python3-idna python3-six
5
6 name=python3-cryptography
7 version=3.2.1
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
10
11 build() {
12 cd ${name#*-}-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1 --skip-build
15 }
|