blob: 1d7cfae41ad8692f2503f7f6c070ccd619275137 (
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: Michał Polański <michal@polanski.me>
pkgname=py3-clikit
_realname=clikit
pkgver=0.4.2
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="24f6013e7ecf3ae22cc8990efced1ce52c3ce11d0c532adc1c69cf28c571872440c92449e89923cde62a7ca0be0fff8665cf30035e2082b73141c2f7754ed45f clikit-0.4.2.tar.gz"
|