summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 83e5fdb61ddfc7ad78de6a1c6a8941bdef9bb8b8 (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: Jeff Barfield (noprobelm[at]protonmail[dot]org)

_gitname=terminaltables
pkgname=python-terminaltables-git
pkgver='r131.ae22aaa'
pkgrel=1
arch=('any')
pkgdesc='Generate simple tables in terminals from a nested list of strings.'
license=('MIT')
makedepends=('git' 'python-setuptools')
provides=('python-terminaltables')
url='https://github.com/Robpol86/terminaltables'
source=("git+https://github.com/Robpol86/terminaltables.git")
sha256sums=('SKIP')

package() {
  cd "${_gitname}"

  # We don't need anything related to git in the package
  rm -rf .git*

  # Install
  python setup.py install --optimize=1 --root="${pkgdir}"

  # Install License
  # MIT/X11 license
  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}