mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
18 lines
549 B
Bash
18 lines
549 B
Bash
pkgname=python3-ccr
|
|
_pkgname=python-ccr
|
|
pkgver=0.3.3
|
|
pkgrel=2
|
|
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=('80fffbc08c0b56993eff6f94bb68f68ce445e6351f903e9fa6d7961bbd863ab1')
|
|
|
|
package() {
|
|
cd "${_pkgname}-${pkgver}"
|
|
python3 setup.py install --root="${pkgdir}/"
|
|
}
|