mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
24 lines
662 B
Bash
24 lines
662 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=python2-openssl
|
|
pkgver=0.13
|
|
pkgrel=1
|
|
pkgdesc="pyOpenSSL is a Python interface to the OpenSSL library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pyopenssl.sourceforge.net"
|
|
license=('LGPL')
|
|
depends=('python2' 'openssl')
|
|
replaces=('pyopenssl')
|
|
provides=('pyopenssl')
|
|
source=(http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-${pkgver}.tar.gz)
|
|
md5sums=('767bca18a71178ca353dff9e10941929')
|
|
|
|
build() {
|
|
cd "${srcdir}/pyOpenSSL-${pkgver}"
|
|
python2 setup.py build
|
|
python2 setup.py install --prefix="$pkgdir/usr" --optimize=1
|
|
}
|