summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5ba526c4980d74f2507c17bcaa0f6136d8f65e8b (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: Arne Beer <arne@twobeer.de>

_gitname=terminaltables
pkgname=${_gitname}-git
pkgver=2.1.0
pkgrel=1
arch=('any')
pkgdesc='Generate simple tables in terminals from a nested list of strings.'
license=('MIT')
makedepends=('git python-setuptools')
provides=('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"
}