blob: d2e7173e16cbb7179a2368727e426e1626fc81ad (
plain)
1 # Description: Python interface to the OpenSSL library
2 # URL: http://pyopenssl.sourceforge.net/
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Packager: Younes Hafri <ycrux@club-internet.fr>
5 #
6 # Depends on: python
7
8 name=pyopenssl
9 version=0.9
10 release=1
11 source=(http://download.sourceforge.net/$name/pyOpenSSL-$version.tar.gz)
12
13 build () {
14 cd pyOpenSSL-$version
15 python setup.py install --root=$PKG
16 chown -R root:root $PKG
17 find $PKG -name '*egg-info' \
18 -o -name test | xargs rm -rf
19 }
|