blob: 318bfc2d997dacb81238dd0f4ebc77db1d187022 (
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.6
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
}
|