summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 59ce8df2b25772fd950f79afb87c26b389e3ea2e (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
48
# Maintainer: éclairevoyant
# Contributor: ThatOneCalculator <kainoa at t1c dot dev>

_pkgname=hyprpicker
pkgname="$_pkgname-git"
pkgver=0.2.0.r6.0eb4919
pkgrel=1
pkgdesc="A wlroots-compatible Wayland color picker that does not suck"
arch=(x86_64)
url="https://github.com/hyprwm/$_pkgname"
license=('BSD-3-Clause')
depends=(cairo gcc-libs glibc libxkbcommon wayland)
makedepends=(
	cmake
	gdb
	git
	libglvnd
	libjpeg-turbo
	meson
	ninja
	pango
	wayland-protocols
	wlroots
	xorgproto
)
optdepends=('wl-clipboard: --autocopy')
source=("git+$url.git")
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
b2sums=('SKIP')

pkgver() {
	git -C $_pkgname describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}

build() {
	cmake -B build -S $_pkgname
	cmake --build build
}

package() {
	install -vDm755 build/hyprpicker -t "$pkgdir/usr/bin/"

	cd $_pkgname
	install -vDm644 LICENSE          -t "$pkgdir/usr/share/licenses/$pkgname/"
	install -vDm644 doc/$_pkgname.1  -t "$pkgdir/usr/share/man/man1/"
	install -vDm644 README.md        -t "$pkgdir/usr/share/doc/$_pkgname/"
}