summaryrefslogtreecommitdiffstats
path: root/abs/core/python_modules/pyopenssl/PKGBUILD
blob: a1368304cadc61c64de02d662ee500df1e9530a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $Id: PKGBUILD 87790 2010-08-18 10:10:07Z ibiru $
# Maintainer : Ionut Biru<ibiru@archlinux.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>

pkgname=pyopenssl
pkgver=0.10
pkgrel=4
pkgdesc="pyOpenSSL is a Python interface to the OpenSSL library"
arch=('i686' 'x86_64')
url="http://pyopenssl.sourceforge.net"
license=('LGPL')
depends=('python2' 'openssl')
source=(http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${pkgver}.tar.gz)
md5sums=('34db8056ec53ce80c7f5fc58bee9f093')

build() {
    cd "${srcdir}/pyOpenSSL-${pkgver}"
    python2 setup.py build
    python2 setup.py install --prefix="$pkgdir/usr" --optimize=1
}