blob: e1c4a3fe33461facb6311c858152efd7df3761a5 (
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
|
# Maintainer: Erik Reider <erik.reider@protonmail.com>
_pkgname=scenefx
pkgname="$_pkgname"
pkgver=0.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"
"wayland"
"wlroots0.17"
)
makedepends=(
"git"
"glslang"
"meson"
"ninja"
"wayland-protocols"
)
optdepends=()
conflicts=("scenefx" "scenefx-git")
provides=("libscenefx.so")
options=("debug")
source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/$pkgver.tar.gz")
sha512sums=("SKIP")
build() {
export PKG_CONFIG_PATH='/usr/lib/wlroots0.17/pkgconfig'
arch-meson -Dwerror=false "${_pkgname}-${pkgver}" build
meson compile -C build
}
package() {
DESTDIR="$pkgdir" meson install -C build
}
|