blob: 39b90c174aa1768a7b213c07db57c1402e620fff (
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
29
|
# Maintainer: Filipe Nascimento <flipee at tuta dot io>
# Contributor: Simon Doppler <dop dot simon at gmail dot com>
pkgname=python-colored
_name=${pkgname#python-}
pkgver=2.2.4
pkgrel=1
pkgdesc="Very simple Python library for color and formatting in terminal"
arch=('any')
url="https://gitlab.com/dslackw/colored"
license=('MIT')
depends=('python')
makedepends=(python-build python-flit python-installer python-wheel)
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"
"LICENSE")
sha256sums=('595e1dd7f3b472ea5f12af21d2fec8a2ea2cf8f9d93e67180197330b26df9b61'
'6e38bc085fb26b5aa0db7b77be9893a805cce0badb2c2950d2fd36626b9a8dd1')
build() {
cd $_name-$pkgver
python -m build --wheel --no-isolation
}
package() {
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
cd $_name-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
|