forked from ports/contrib
17 lines
474 B
Plaintext
17 lines
474 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.0.1
|
|
release=5
|
|
source=(http://www.amk.ca/files/python/crypto/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
find $PKG -name '*egg-info' | xargs rm
|
|
}
|