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