mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
679 B
Bash
21 lines
679 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
|
# Contributor: Guillem Rieu <guillemr@gmx.net>
|
|
|
|
pkgname=pyopenssl
|
|
pkgver=0.8
|
|
pkgrel=1
|
|
pkgdesc="pyOpenSSL is a Python interface to the OpenSSL library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pyopenssl.sourceforge.net"
|
|
license=("GPL")
|
|
depends=('python>=2.6' 'openssl')
|
|
source=(http://downloads.sourceforge.net/sourceforge/pyopenssl/pyOpenSSL-${pkgver}.tar.gz)
|
|
md5sums=('00377690f224d9e59c833fb0459603f4 ')
|
|
|
|
build() {
|
|
cd $startdir/src/pyOpenSSL-${pkgver}
|
|
python setup.py build
|
|
python setup.py install --prefix=$startdir/pkg/usr
|
|
}
|