summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0062f5f13cc1ce50f052a84e5136b05584125439 (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: Jose Riha <jose1711 gmail com>

pkgname=python-birdseye
pkgver=0.9.3
pkgrel=3
pkgdesc="Graphical Python debugger which lets you view the values of all evaluated expressions"
url="http://github.com/alexmojaki/birdseye"
depends=(python-littleutils python-flask-humanize python-humanize python-flask-humanize python-cheap_repr python-outdated python-sqlalchemy python-cached-property python-future python-asttokens)
makedepends=('python-setuptools-scm' 'python-wheel')
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/b/birdseye/birdseye-${pkgver}.tar.gz")
sha256sums=('8a43008afe6c7d54c59a117fe6c818bc8cdd895bb8aa0b0949514073cbe809c0')

build() {
  cd "birdseye-${pkgver}"
  python setup.py build
}

package() {
  cd "birdseye-${pkgver}"
  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
  install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/python-birdseye/LICENSE.txt"
  install -Dm644 README.rst "${pkgdir}/usr/share/doc/python-birdseye/README.rst"
}