summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e96587b974bf35193239e84ed4722b41ffb4c770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Jameson Pugh <imntreal@gmail.com>

pkgname=ansible-review
pkgver=0.13.6
pkgrel=2
pkgdesc="Reviews Ansible playbooks, roles and inventory and suggests improvements."
url="https://github.com/willthames/ansible-review"
depends=('ansible-lint' 'python-yaml' 'python-appdirs' 'python-unidiff' 'flake8')
makedepends=('python2-nose')
license=('MIT')
arch=('any')
source=("https://github.com/willthames/ansible-review/archive/v${pkgver}.tar.gz")
sha256sums=('74ec3039ab1b8320284dfdd824234b7fb9045c8160eb9d726adf4077c3cbe2fe')

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  python setup.py install --root="${pkgdir}" --optimize=1
}

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