summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72c1e720058ccb57277c554d55906cf8cec8593f (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
# Contributor: Dan Denkijin <dandenkijin at gmail dot com>
# Maintainer: Dan Denkijin <dandenkijin at gmail dot com>

pkgname=riverwm-utils
pkgver=0.0.7.r8.gab7e631
pkgrel=2
pkgdesc="Utilities for the River Wayland compositor"
arch=(any)
url="https://github.com/NickHastings/${pkgname}"
license=(GPLv3)
makedepends=('git' 'python-installer' 'python-build' 'python-wheel')
source=("git+${url}.git")
md5sums=('SKIP')
pkgver() {
  	cd $srcdir/$pkgname
  	git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
	cd $srcdir/$pkgname
  	python -m build --wheel --no-isolation 
}
package() {
 	cd $srcdir/$pkgname
    	python -m installer --destdir="$pkgdir" dist/*.whl
}