blob: 986d133688fc1168d7b9a9c61592d159eaf7315b (
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
|
# Maintainer: Erik Reider <erik.reider@protonmail.com>
pkgname=scenefx0.4
_pkgname=scenefx
pkgver="0.4.1"
pkgrel=2
license=("MIT")
pkgdesc="A drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects"
url="https://github.com/wlrfx/scenefx"
arch=("x86_64")
depends=(
"libdrm"
"libglvnd"
"libpixman-1.so"
"wlroots0.19"
"wayland"
)
makedepends=(
"git"
"glslang"
"meson"
"ninja"
"wayland-protocols"
)
provides=("libscenefx-0.4.so")
conflicts=("scenefx-git" "scenefx")
replaces=("${_pkgname}")
options=("!debug")
source=("${pkgname}.tar.gz::${url}/archive/refs/tags/$pkgver.tar.gz")
sha512sums=("SKIP")
build() {
arch-meson "scenefx-${pkgver}" build
meson compile -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|