summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1da00846eeb9894e38630bbade915ac193ca4c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Sébastien Luttringer <sebastien.luttringer@arkena.com>

pkgname=cc-cli
pkgver=7
pkgrel=3
pkgdesc='CloudControl Command Line Interface'
arch=('any')
url='https://git.arkena.net/cloudcontrol/cc-cli'
license=('GPL2')
depends=('python2' 'python2-sjrpc' 'python2-xdg')
makedepends=('git' 'python2-setuptools')
source=("git+https://git.arkena.net/cloudcontrol/cc-cli.git#tag=v$pkgver")
md5sums=('SKIP')

build() {
  cd $pkgname
  python2 setup.py build
}

package() {
  cd $pkgname
  python2 setup.py install --root="$pkgdir" --optimize=1
}

# vim:set ts=2 sw=2 et: