2021-06-02 16:13:46 +02:00
|
|
|
SUMMARY = "A Wayland WM"
|
|
|
|
HOMEPAGE = "https://github.com/WayfireWM/wayfire"
|
|
|
|
BUGTRACKER = "https://github.com/WayfireWM/wayfire/issues"
|
|
|
|
SECTION = "graphics"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=14e4594093363e3c3a530e9b54cb5285"
|
|
|
|
|
|
|
|
REQUIRED_DISTRO_FEATURES = "wayland"
|
|
|
|
|
|
|
|
DEPENDS += " \
|
|
|
|
cairo \
|
|
|
|
freetype \
|
|
|
|
glm \
|
2023-01-31 13:51:36 +01:00
|
|
|
hwdata-native \
|
2021-06-02 16:13:46 +02:00
|
|
|
jpeg \
|
|
|
|
libdrm \
|
|
|
|
libevdev \
|
|
|
|
libinput \
|
|
|
|
libpng \
|
|
|
|
libxkbcommon \
|
|
|
|
libxml2 \
|
2022-10-15 15:34:04 +02:00
|
|
|
nlohmann-json \
|
2022-02-15 02:30:36 +01:00
|
|
|
pango \
|
2021-06-02 16:13:46 +02:00
|
|
|
pixman \
|
|
|
|
seatd \
|
2024-08-01 17:32:18 +02:00
|
|
|
virtual/libgl \
|
2021-06-02 16:13:46 +02:00
|
|
|
wayland \
|
|
|
|
wayland-native \
|
|
|
|
wayland-protocols \
|
|
|
|
"
|
|
|
|
|
2021-08-07 06:23:26 +02:00
|
|
|
RRECOMMENDS:${PN} += " \
|
2021-06-02 16:13:46 +02:00
|
|
|
wcm \
|
|
|
|
wf-recorder \
|
|
|
|
wf-shell \
|
|
|
|
"
|
|
|
|
|
|
|
|
PACKAGECONFIG[gles32] = "-Denable_gles32=true,-Denable_gles32=false"
|
2021-06-27 00:56:06 +02:00
|
|
|
PACKAGECONFIG[use_system_wfconfig] = "-Duse_system_wfconfig=enabled,-Duse_system_wfconfig=disabled,wf-config"
|
2023-11-26 21:53:28 +01:00
|
|
|
PACKAGECONFIG[use_system_wlroots] = "-Duse_system_wlroots=enabled,-Duse_system_wlroots=disabled,wlroots-0.17"
|
2022-10-15 15:34:04 +02:00
|
|
|
PACKAGECONFIG[x11] = "-Dxwayland=enabled,-Dxwayland=disabled,xwayland xcb-util-renderutil xcb-util-wm"
|
|
|
|
PACKAGECONFIG[vulkan] = ",,vulkan-loader vulkan-headers glslang-native"
|
2021-06-02 16:13:46 +02:00
|
|
|
|
|
|
|
PACKAGECONFIG ?= " \
|
2022-10-15 15:34:04 +02:00
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'vulkan x11', d)} \
|
2022-02-15 02:30:36 +01:00
|
|
|
gles32 \
|
2023-10-26 18:16:49 +02:00
|
|
|
use_system_wlroots \
|
2021-06-02 16:13:46 +02:00
|
|
|
"
|
|
|
|
|
2022-12-08 07:49:12 +01:00
|
|
|
SRC_URI = "gitsm://github.com/WayfireWM/wayfire.git;protocol=https;nobranch=1"
|
2022-02-15 02:30:36 +01:00
|
|
|
|
2024-07-09 09:04:29 +02:00
|
|
|
SRCREV = "44e1fa9c62e1f8c9f35cedbf3e86c6a0247e0b79"
|
2024-03-26 10:37:14 +01:00
|
|
|
PV = "0.8.1"
|
2021-06-02 16:13:46 +02:00
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
|
|
|
|
inherit meson pkgconfig features_check
|
|
|
|
|
|
|
|
EXTRA_OEMESON += "--buildtype release"
|
|
|
|
|
2023-10-26 18:16:49 +02:00
|
|
|
do_install:append() {
|
|
|
|
rm -rf ${D}${prefix}/man
|
|
|
|
}
|
2022-02-15 02:30:36 +01:00
|
|
|
|
2023-10-26 18:16:49 +02:00
|
|
|
FILES:${PN} += "${datadir} ${libdir}"
|
|
|
|
FILES:${PN}-dev = "${includedir} ${libdir}/pkgconfig ${libdir}/libwlroots.so ${libdir}/libwf-utils.so ${libdir}/libwf-config.so"
|
2021-06-02 16:13:46 +02:00
|
|
|
|