blob: 21a8cefe211aefc37971f463d8679828c3efe38a (
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
49
50
51
|
# Maintainer: imnotpolar
# Contributor: éclairevoyant
# Contributor: ThatOneCalculator <kainoa at t1c dot dev>
_pkgname=hyprpicker
pkgname="$_pkgname-git"
pkgver=0.4.1.r1.4411a6d
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
libgl
libjpeg-turbo
meson
ninja
pango
hyprutils-git
hyprwayland-scanner-git
wayland-protocols
xorgproto
pkg-config
)
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/"
}
|