desktop/chaser/PKGBUILD

18 lines
561 B
Bash
Raw Normal View History

2016-04-06 08:29:17 +08:00
pkgname=chaser
2017-08-05 05:39:41 +08:00
pkgver=0.9.8
2017-11-13 03:29:32 +08:00
pkgrel=2
2016-04-06 08:29:17 +08:00
pkgdesc='A Python wrapper for the CCR'
arch=('any')
url='http://github.com/ccr-tools/chaser/'
license=('BSD3')
2017-11-13 03:29:32 +08:00
depends=('python3' 'python3-requests' 'python3-aur' 'python3-ccr'
'python3-toposort' 'python3-setuptools' 'python3-progressbar'
'python3-termcolor')
source=("https://github.com/ccr-tools/${pkgname}/archive/${pkgver}.tar.gz")
2017-08-05 05:39:41 +08:00
sha256sums=('337003f2925f500749ec1d6c212692223a1c1b6d28ef89b4fa5b80457c2304ca')
2017-11-13 03:29:32 +08:00
package() {
cd "${pkgname}-${pkgver}"
python3 setup.py install --root="${pkgdir}/"
}