summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 26b15b737903b35c6f690e759b0cd6657b6cd30e (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
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
_pkgname=pylint-plugin-utils
pkgname=python-pylint-plugin-utils
pkgver=0.2.3
pkgrel=1
pkgdesc="Utilities and helpers for writing Pylint plugins"
arch=('any')
url="https://github.com/landscapeio/pylint-plugin-utils"
license=('GPL2')
depends=('python')
makedepends=('python-setuptools')
source=(https://github.com/landscapeio/pylint-plugin-utils/archive/${pkgver}.tar.gz)
md5sums=('c09c298cc2b5f1af0831edf7455228e7')

build() {
  cd "${_pkgname}-${pkgver}"

  python setup.py build
}

package() {
    cd "${_pkgname}-${pkgver}"

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