blob: effa8b594ab1ab62dc06907fc30621fdbc0e7d16 (
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
30
31
32
33
34
35
|
# Maintainer: Rafael Baboni Dominiquini <rafaeldominiquini AT gmail DOT com>
_exec=mp
_name=multiplex
pkgname=python-$_name
pkgver=0.6.1
pkgrel=2
pkgdesc="View output of multiple processes, in parallel, in the console, with an interactive TUI."
arch=('any')
url="https://github.com/dankilman/multiplex"
license=('MIT')
depends=('python-aiofiles' 'python-aiostream' 'python-click' 'python-easyansi' 'python-wcwidth' 'python-pyte')
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel' 'python-poetry-core')
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz"
"fix_typo.patch")
sha256sums=('4fe4a89eaeae6b33d199e772dda211ac1c3de10438c4534b790860a291c722dc'
'd2f851cd67bcf58c357c71a418697c68c66d5214d8974dc680d3389d86be5a6c')
prepare() {
cd "$_name-$pkgver"
patch -Np1 -i ../fix_typo.patch
}
build() {
cd "$_name-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|