forked from ports/contrib
17 lines
507 B
Plaintext
17 lines
507 B
Plaintext
# Description: Python collection of cryptographic algorithms and protocols.
|
|
# URL: http://www.amk.ca/python/code/crypto.html
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
# Packager: Younès Hafri, ycrux at club-internet dot fr>
|
|
# Depends on: python
|
|
|
|
name=pycrypto
|
|
version=2.0.1
|
|
release=3
|
|
source=(http://www.amk.ca/files/python/crypto/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
rm $PKG/usr/lib/python2.5/site-packages/*.egg-info
|
|
}
|