summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 97b89e39be8911db859bfe0bf07cb9400d084627 (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=colorclass
pkgname=python-colorclass-git
pkgver=1.2.0
pkgrel=1
arch=('any')
pkgdesc='Generate simple tables in terminals from a nested list of strings.'
license=('MIT')
makedepends=('git python-setuptools')
provides=('python-colorclass')
url='https://github.com/Robpol86/colorclass'
source=("git+https://github.com/Robpol86/colorclass.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"
}