# SPDX-License-Identifier: GPL-2.0 # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="weston" PKG_VERSION="14.0.1" PKG_SHA256="a8150505b126a59df781fe8c30c8e6f87da7013e179039eb844a5bbbcc7c79b3" PKG_LICENSE="MIT" PKG_SITE="https://wayland.freedesktop.org/" PKG_URL="https://gitlab.freedesktop.org/wayland/weston/-/releases/${PKG_VERSION}/downloads/${PKG_NAME}-${PKG_VERSION}.tar.xz" PKG_DEPENDS_TARGET="toolchain wayland wayland-protocols libdrm libxkbcommon libinput cairo pango libjpeg-turbo dbus seatd" PKG_LONGDESC="Reference implementation of a Wayland compositor" PKG_MESON_OPTS_TARGET="-Dbackend-drm=true \ -Dbackend-drm-screencast-vaapi=false \ -Dbackend-headless=false \ -Dbackend-pipewire=false \ -Dbackend-rdp=false \ -Dscreenshare=false \ -Dbackend-vnc=false \ -Dbackend-wayland=false \ -Dbackend-x11=false \ -Dbackend-default=drm \ -Drenderer-gl=true \ -Dxwayland=false \ -Dsystemd=true \ -Dremoting=false \ -Dpipewire=false \ -Dshell-desktop=true \ -Dshell-fullscreen=false \ -Dshell-ivi=false \ -Dshell-kiosk=false \ -Ddesktop-shell-client-default="weston-desktop-shell" \ -Dcolor-management-lcms=false \ -Dimage-jpeg=true \ -Dimage-webp=false \ -Dtools=['terminal'] -Ddemo-clients=false \ -Dsimple-clients=[] \ -Dresize-pool=false \ -Dwcap-decode=false \ -Dtest-junit-xml=false \ -Dtest-skip-is-failure=false \ -Ddoc=false" pre_configure_target() { # weston does not build with NDEBUG (requires assert for tests) export TARGET_CFLAGS=$(echo ${TARGET_CFLAGS} | sed -e "s|-DNDEBUG||g") } post_makeinstall_target() { mkdir -p ${INSTALL}/usr/lib/weston cp ${PKG_DIR}/scripts/weston-config ${INSTALL}/usr/lib/weston mkdir -p ${INSTALL}/usr/share/weston cp ${PKG_DIR}/config/weston.ini ${INSTALL}/usr/share/weston find_file_path "splash/splash-2160.png" && cp ${FOUND_PATH} ${INSTALL}/usr/share/weston/libreelec-wallpaper-2160.png safe_remove ${INSTALL}/usr/share/wayland-sessions } post_install() { enable_service weston.service }