blob: 90c462c4365e4e056b03e3338d1ee21c45cf8f32 (
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
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Mark Collins <tera_1225 hat hotmail.com>
pkgname=matrix-commander-git
_name="${pkgname%-git}"
pkgver=r368.078da5f
pkgrel=2
pkgdesc="Simple CLI-based Matrix client (from git master)"
arch=('any')
url="https://github.com/8go/matrix-commander"
license=('GPL-3.0-or-later')
makedepends=(
"git"
"python-build"
"python-installer"
"python-wheel"
)
depends=(
"bash"
"python"
"python-aiohttp"
"python-async-timeout"
"python-aiofiles"
"python-emoji"
"python-markdown"
"python-matrix-nio" # AUR
"python-pillow"
"python-setuptools"
"python-magic"
"python-pyxdg"
"python-atomicwrites"
"python-cachetools"
"python-olm"
"python-peewee"
)
optdepends=(
"python-notify2: needed for notifications on desktop systems"
)
provides=("matrix-commander")
conflicts=("matrix-commander")
source=("${_name}::git+https://github.com/8go/matrix-commander.git")
md5sums=('SKIP')
pkgver() {
cd "$_name"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$_name"
python -m build --wheel --no-isolation
}
package() {
cd "$_name"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|