blob: f96395cafc51be7bfebd71d720e672ead8675245 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
# Maintainer: GreyXor <greyxor@protonmail.com>
# Maintainer: Antonin Décimo <antonin dot decimo at gmail dot com>
pkgname=wlroots-asan-git
pkgver=0.18.0.r6859.4688a371
pkgrel=2
pkgdesc='Modular Wayland compositor library (git development version, with address sanitizer)'
arch=(x86_64)
url=https://gitlab.freedesktop.org/wlroots/wlroots
license=(MIT)
options=(debug)
depends=(
glibc
libdrm
libinput
libliftoff
libxcb
libglvnd
libxkbcommon
systemd-libs
opengl-driver
pixman
wayland
xcb-util-errors
xcb-util-renderutil
xcb-util-wm
seatd
glslang
vulkan-icd-loader
libdisplay-info)
makedepends=(
git
meson
vulkan-headers
wayland-protocols
xorgproto
xorg-xwayland
)
optdepends=(
'xorg-xwayland: enable X11 support'
)
provides=("libwlroots.so" "${pkgname%-asan-git}=${pkgver%%.r*}" "wlroots-git=${pkgver}")
conflicts=("${pkgname%-asan-git}" "wlroots-git")
source=("${pkgname}::git+${url}.git")
b2sums=('SKIP')
_builddir="build"
_builddir_pkgver="build-pkgver"
_meson_setup() {
arch-meson \
--buildtype=debug \
-Db_sanitize=address,undefined \
-Dwerror=false \
-Dexamples=false \
"${pkgname}" "$1"
}
prepare() {
_meson_setup "${_builddir_pkgver}"
}
pkgver() {
(
set -o pipefail
meson introspect --projectinfo "${_builddir_pkgver}" |
awk 'match($0, /"version":\s*"([[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+)-dev"/, ret) {printf "%s",ret[1]}'
)
cd "${pkgname}"
printf ".r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
_meson_setup "${_builddir}"
meson compile -C "${_builddir}"
}
package() {
meson install -C "${_builddir}" --destdir="${pkgdir}"
install -Dm644 "${pkgname}/"LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|