summaryrefslogtreecommitdiffstats
path: root/abs/core/python_modules/python-terminaltables/PKGBUILD
blob: b5a1b69874d1888c87ca7c0ea5efdfde8a6c2685 (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: Christian Rebischke <chris.rebischke[at]archlinux[dot]org>
pkgbase=python-terminaltables
_pyname=terminaltables
pkgname=('python2-terminaltables')
makedepends=('python2' 'python2-setuptools')
pkgver=3.1.0
pkgrel=3
pkgdesc="Generate simple tables in terminals from a nested list of strings"
arch=('any')
url="https://github.com/Robpol86/terminaltables"
license=('MIT')
source=("${_pyname}-${pkgver}.tar.gz::https://github.com/Robpol86/${_pyname}/archive/v${pkgver}.tar.gz")
sha512sums=('dc49458652fff8bc6094d316d84c9b8e9fca1a26e3230c0b668bc03ec8528793f4ef024e8032d4a56fbfabfdfd4a1142870f550f0b373ba6a42dd2e3ead3f501')

package_python-terminaltables() {
  depends=('python')
  cd "${srcdir}/${_pyname}-${pkgver}"
  python setup.py install -O1 --root="${pkgdir}"
}

package_python2-terminaltables() {
  depends=('python2')
  cd "${srcdir}/${_pyname}-${pkgver}"
  python2 setup.py install -O1 --root="${pkgdir}"
}

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