blob: 83b3a9048bdc1a6004967706a25811b9828a7c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Interface python de la librairie openSSL
# URL: http://pyopenssl.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: python
name=pyopenssl
version=0.8
release=1
source=(http://downloads.sourceforge.net/$name/pyOpenSSL-$version.tar.gz)
build() {
cd pyOpenSSL-$version
python setup.py install --root=$PKG
chown -R root:root $PKG
}
|