16 lines
442 B
Plaintext
16 lines
442 B
Plaintext
# Description: Python collection of cryptographic algorithms and protocols
|
|
# URL: http://www.amk.ca/python/code/crypto.html
|
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
|
# Packager: Lucas Hazel, lucas at die dot net dot au
|
|
# Depends on: python
|
|
|
|
name=pycrypto
|
|
version=2.6
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/p/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
}
|