blob: 4ae883781cd2d6903f5cfe9b8367aff2874d87be (
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
|
# Maintainer: Enzo Einhorn <enzo.einh@gmail.com>
# Co-Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=gnome-extensions-cli
pkgver=0.10.4
pkgrel=1
pkgdesc="Command line tool to manage your GNOME Shell extensions"
arch=('any')
url="https://github.com/essembeh/gnome-extensions-cli"
license=('Apache-2.0')
depends=(
'python-colorama'
'python-gobject'
'python-packaging'
'python-pydantic'
'python-requests'
'python-tqdm'
)
makedepends=(
'python-build'
'python-installer'
'python-poetry-core'
'python-wheel'
)
optdepends=(
'python-dbus: communicate with GNOME Shell directly'
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz")
sha256sums=('0e83aa810b53b9f82b04605e280b52bb2a094c2039b91c4cb8653a7b5f811e5c')
build() {
cd "$pkgname-$pkgver"
GIT_DIR='.' python -m build --wheel --no-isolation
}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|