17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
# Description: Python interface to the OpenSSL library
|
|
# URL: http://pypi.python.org/pypi/pyOpenSSL
|
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
|
# Packager: Lucas Hazel, lucas at die dot net dot au
|
|
# Depends on: cryptography
|
|
|
|
name=pyopenssl
|
|
version=0.14
|
|
release=1
|
|
source=(http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pyOpenSSL-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --root=$PKG --optimize=1
|
|
}
|