# Maintainer: Filipe Nascimento # Contributor: Ke Liu pkgname=python-asciimatics _name=${pkgname//python-} pkgver=1.15.0 pkgrel=1 pkgdesc="A cross platform package to do curses-like operations, plus higher level APIs and widgets to create text UIs and ASCII art animations" arch=('any') url="https://github.com/peterbrittain/asciimatics" license=('Apache') depends=('python-wcwidth' 'python-pyfiglet' 'python-future' 'python-pillow') makedepends=('python-setuptools-scm') source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz") sha256sums=('cfdd398042727519d8b73e62b8ef82c0becfed4eb420899c3b96c98d0b96821a') build() { cd $_name-$pkgver python setup.py build } package() { cd $_name-$pkgver python setup.py install --root "$pkgdir" --skip-build --optimize=1 }