summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4072fff50ed6c37324b072ea2444e14c7a4852e6 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# $Id$
# Maintainer: Adam Labbe <adamlabbe@gmail.com>

pkgbase=python-flake8-formatter-abspath
pkgname=('python-flake8-formatter-abspath' 'python2-flake8-formatter-abspath')
pkgver=1.0.1
pkgrel=1
pkgdesc='A flake8 formatter plugin that shows the absolute path of files with warnings.'
arch=('any')
license=('MIT')
url='https://github.com/jarshwah/flake8_formatter_abspath'
makedepends=('python-setuptools' 'python2-setuptools' 'git')
source=("git+https://github.com/jarshwah/flake8_formatter_abspath.git#tag=v$pkgver")
md5sums=('SKIP')

prepare() {
  cp -a flake8_formatter_abspath{,-py2}
}

build() {
  cd "$srcdir"/flake8_formatter_abspath
  python setup.py build

  cd "$srcdir"/flake8_formatter_abspath-py2
  python2 setup.py build
}

package_python-flake8-formatter-abspath() {
  depends=('python-setuptools')

  cd "$srcdir"/flake8_formatter_abspath
  python setup.py install --root="$pkgdir"/ --optimize=1
  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

package_python2-flake8-formatter-abspath() {
  depends=('python2-setuptools')

  cd "$srcdir"/flake8_formatter_abspath-py2
  python2 setup.py install --root="$pkgdir"/ --optimize=1
  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

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