distribution/packages/wayland/compositor/sway/package.mk
sydarn ab11cf234a Sway build fixes
libxcb-wm is required for xwayland, I think I made some progress
building it... but it's not there yet. So xwayland is disabled
2024-02-01 13:54:27 +01:00

45 lines
1.7 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2021-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="sway"
PKG_VERSION="1.8.1"
PKG_SHA256="e9f575761342fc8fe0cfeea80c90f32ddfa8c543572fec179f40922346f47dff"
PKG_LICENSE="MIT"
PKG_SITE="https://swaywm.org/"
PKG_URL="https://github.com/swaywm/sway/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain wayland wayland-protocols libdrm libxkbcommon libinput cairo pango libjpeg-turbo dbus json-c wlroots gdk-pixbuf swaybg foot bemenu"
PKG_LONGDESC="i3-compatible Wayland compositor"
# to enable xwayland package: https://gitlab.freedesktop.org/xorg/lib/libxcb-wm/-/tree/master/icccm?ref_type=heads
PKG_MESON_OPTS_TARGET="-Ddefault-wallpaper=false \
-Dzsh-completions=false \
-Dbash-completions=false \
-Dfish-completions=false \
-Dswaybar=true \
-Dswaynag=true \
-Dxwayland=disabled \
-Dtray=disabled \
-Dgdk-pixbuf=enabled \
-Dman-pages=disabled \
-Dsd-bus-provider=auto"
pre_configure_target() {
# sway does not build without -Wno flags as all warnings being treated as errors
export TARGET_CFLAGS=$(echo "${TARGET_CFLAGS} -Wno-unused-variable")
}
post_makeinstall_target() {
mkdir -p ${INSTALL}/usr/lib/sway
cp ${PKG_DIR}/scripts/sway.sh ${INSTALL}/usr/bin
cp ${PKG_DIR}/scripts/sway-config ${INSTALL}/usr/lib/sway
# install config & wallpaper
mkdir -p ${INSTALL}/usr/share/sway
cp ${PKG_DIR}/config/* ${INSTALL}/usr/share/sway
# clean up
safe_remove ${INSTALL}/etc
safe_remove ${INSTALL}/usr/share/wayland-sessions
}