blob: 5498e0dd845421d5547c4efe8d952e2431317308 (
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
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
pkgname=texttest
pkgver=4.3.1
pkgrel=1
pkgdesc="A tool for text-based functional testing"
arch=(any)
url="https://github.com/texttest/texttest"
license=(LGPL)
depends=(
gdk-pixbuf2
gobject-introspection-runtime
gtk3
pango
python
python-boto
python-certifi
python-gobject
python-matplotlib
python-pillow
python-psutil
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('d15c75b8262d6ba9a60320801a03b59b9d33b6d28c62348c33255497aaad8e7f')
_archive="$pkgname-$pkgver"
build() {
cd "$_archive"
python -m build --wheel --no-isolation
}
package() {
cd "$_archive"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|