summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c4f791c485db9bfbb52f8d9c0573cbc7eb55699e (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
# Maintainer: Ben Widawsky <ben@bwidawsk.net>
pkgname=kanshi-git
pkgver=r73.823cdb0
pkgrel=2
pkgdesc="Dynamic display configuration for WMs like i3/sway"
arch=(x86_64)
url="https://github.com/emersion/kanshi"
license=('MIT')
groups=()
depends=('wlroots>=0.7')
makedepends=('git' 'meson' 'ninja' 'scdoc' 'wayland')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
replaces=()
backup=()
options=()
install=
source=('kanshi::git+https://github.com/emersion/kanshi.git')
noextract=()
md5sums=('SKIP')

# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
# a description of each element in the source array.

pkgver() {
	cd "$srcdir/${pkgname%-git}"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
	cd "${srcdir}/${pkgname%-git}"
	mkdir -p build
		meson build \
		--buildtype=release \
		--prefix=/usr
}

build() {
	cd "${srcdir}/${pkgname%-git}"
	ninja -C build
}

package() {
	cd "$srcdir/${pkgname%-git}"
	DESTDIR="$pkgdir/" ninja -C build install

}