mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 19:07:15 +08:00
27 lines
658 B
Bash
27 lines
658 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
#
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=python-gnutls
|
|
pkgver=1.2.3
|
|
pkgrel=1
|
|
pkgdesc="Python wrapper for the GNU TLS library."
|
|
arch=('any')
|
|
license=('LGPL')
|
|
depends=('python2')
|
|
url="http://ag-projects.com/"
|
|
source=("http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('a24fa2737e7ccf379f603707f5709317')
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
python2 setup.py install --prefix=/usr --root="${pkgdir}" || return 1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|