blob: 4c02fc855f550400c8ed1f465e617158b4b13fdf (
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
|
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-clikit
_realname=clikit
pkgver=0.4.1
pkgrel=0
pkgdesc="Python3 library to create beautiful and testable command-line interfaces"
options="!check" # No tests on pypi tarball, github uses pyproject.toml
url="https://github.com/sdispater/clikit"
arch="noarch"
license="MIT"
depends="python3 py3-pastel py3-pylev"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz"
builddir="$srcdir/$_realname-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="72b5ae1fbff0b7b63c4d36c051630d33bcc31d0ba90f71e50453fb0c6610074109e75c03d194a0803e94f4a1bc122adf2f1af1b74a87f85882c14f9bded56838 clikit-0.4.1.tar.gz"
|