blob: ad0af2e354bbdac72fbf75ba566b83f9edc45d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Description: Collection d'algoritmes et protocols pour Python
# URL: https://www.dlitz.net/software/pycrypto/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
# Run on:
name=pycrypto
version=2.4.1
release=1
source=(http://ftp.dlitz.net/pub/dlitz/crypto/$name/$name-$version.tar.gz)
build() {
cd $name-$version
python2 setup.py build install --root=$PKG
}
|