16 lines
553 B
Plaintext
16 lines
553 B
Plaintext
# Description: A package designed to expose cryptographic recipes and primitives to Python developers.
|
|
# URL: http://pypi.python.org/pypi/cryptography
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python-enum34 python-pyasn1 python-cffi
|
|
|
|
name=python-cryptography
|
|
version=2.7
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:7:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|