17 lines
497 B
Plaintext
17 lines
497 B
Plaintext
# Description: Python collection of cryptographic algorithms and protocols.
|
|
# URL: http://www.dlitz.net/software/pycrypto/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Lucas Hazel, lucas at die dot net dot au
|
|
# Depends on: libgmp python
|
|
|
|
name=pycrypto
|
|
version=2.6.1
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/p/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py build
|
|
/usr/bin/python setup.py install --root=$PKG --optimize=1
|
|
}
|