1
0
forked from ports/contrib

20 lines
527 B
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: Python interface to the OpenSSL library
# URL: http://pyopenssl.sourceforge.net/
2008-04-11 21:12:49 +10:00
# Maintainer: Lucas Hazel, lucas at die dot net dot au
2006-11-20 07:26:53 +10:00
# Packager: Younes Hafri <ycrux@club-internet.fr>
#
2006-12-08 22:38:49 +10:00
# Depends on: python
2006-11-14 09:13:35 +10:00
name=pyopenssl
2008-07-11 22:28:27 +10:00
version=0.7
release=1
2006-11-14 09:13:35 +10:00
source=(http://dl.sourceforge.net/sourceforge/$name/pyOpenSSL-$version.tar.gz)
build () {
2006-11-20 07:26:53 +10:00
cd pyOpenSSL-$version
python setup.py install --root=$PKG
chown -R root:root $PKG
2008-07-11 22:28:27 +10:00
find $PKG -name '*egg-info' \
-o -name test | xargs rm -rf
2006-11-14 09:13:35 +10:00
}