blob: 2ff0d7c8a49c4fde1ced72256b4596f6f8acf5eb (
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
|
# Maintainer: Ben Song <bensongsyz@gmail.com>
# Contributer: Tim Liou <wheatdoge at gmail dot com>
pkgname=i3-workspace-groups
pkgver=0.4.7
pkgrel=2
pkgdesc='Tools for managing i3wm workspaces in groups.'
url='https://github.com/infokiller/i3-workspace-groups'
arch=('any')
license=('MIT')
source=("git+https://github.com/infokiller/i3-workspace-groups#tag=$pkgver")
sha256sums=('SKIP')
depends=('python' 'i3-wm' 'python-i3ipc' 'python-toml')
makedepends=(python-build python-installer python-wheel git python-setuptools python-setuptools-scm)
optdepends=('rofi: provide for a few utility scripts')
install="${pkgname}.install"
build() {
cd "$pkgname"
python -m build --wheel --no-isolation
}
package() {
cd "$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|