summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: df981bfc9b3072e2e4b42a3112a8e27f8cfc84af (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
26
27
28
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>

pkgname=python-prospector
pkgver=0.12
pkgrel=1
pkgdesc="Python static analysis tool"
arch=('any')
makedepends=('python-setuptools' 'pydocstyle' 'python-pep8-naming' 'python-yaml' 'python-dodgy' 'python-setoptconf'
             'python-requirements-detector' 'python-pylint-common' 'python-pylint-plugin-utils'
             'python-pylint-django' 'python-pylint-celery' 'python-pylint-flask')
url="https://github.com/landscapeio/prospector"
license=('GPL2')
source=(https://github.com/landscapeio/prospector/archive/${pkgver}.tar.gz)
md5sums=('45d00e6b6b70b69d3f02c64c74f9f40c')

build() {
  cd "$srcdir/${pkgname#python-}-$pkgver"

  python setup.py build
}

package() {
  cd "$srcdir/${pkgname#python-}-$pkgver"

  python setup.py install --root="$pkgdir" --optimize=1
  install -Dm755 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"/LICENSE
}
# vim:set ts=2 sw=2 et: