blob: 9ca73fe8746ea45d5a3cbc09d483acbe46ec4912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
pkgname=vkbasalt-cli
pkgver=3.1.1
pkgrel=3
pkgdesc="Command-line utility for vkBasalt"
arch=(any)
url="https://gitlab.com/TheEvilSkeleton/vkbasalt-cli"
license=('LGPL-3.0-only AND GPL-3.0-only')
depends=(python)
makedepends=(git python-build python-wheel python-installer python-setuptools)
source=("git+https://gitlab.com/TheEvilSkeleton/vkbasalt-cli.git#tag=v${pkgver}")
sha256sums=('SKIP')
build() {
cd vkbasalt-cli
python -m build --wheel --no-isolation
}
package() {
cd vkbasalt-cli
python -m installer --destdir="$pkgdir" dist/*.whl
}
|