summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: af708466348c35d9a3c5c17faab54e81d420d849 (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
# Maintainer: Sam Chan <shaughn.chan@gmail.com>
pkgname=grim-hyprland-git
pkgver=0.1.0
pkgrel=1
pkgdesc='Fork of grim for Hyprland specific protocols'
arch=(x86_64)
url=https://github.com/eriedaberrie/grim-hyprland
license=(MIT)
depends=(
	wayland
	pixman
	libpng
)
makedepends=(
	git
	meson
)
optdepends=('libjpeg: JPEG support')
conflicts=(grim)
provides=(grim)
source=("${pkgname}::git+${url}.git")
b2sums=('SKIP')

build() {
	arch-meson --buildtype=release -Dwerror=false ${pkgname} build
	meson compile -C build
}

package() {
	meson install -C build --destdir="${pkgdir}"
}