desktop/python3-ccr/PKGBUILD
2016-04-05 18:34:00 -06:00

18 lines
549 B
Bash

pkgname=python3-ccr
_pkgname=python-ccr
pkgver=0.3.2
pkgrel=1
pkgdesc='A python library for accessing and working with the CCR.'
arch=('any')
url='http://github.com/ccr-tools/python-ccr/'
license=('GPLv2 or any later version')
depends=('python3' 'python3-requests')
makedepends=('python3-setuptools')
source=("https://github.com/ccr-tools/${_pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('852376333703110f03b7c28ac9a7d81180d87554194b10c3aa38a4c97451c7e1')
package() {
cd "${_pkgname}-${pkgver}"
python3 setup.py install --root="${pkgdir}/"
}