forked from brl/citadel
Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
35 lines
953 B
BlitzBasic
35 lines
953 B
BlitzBasic
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=dfc67e5b1fa10ebb4b70eb0c0ca67bea"
|
|
|
|
SRCREV = "5ae4f65045c04df7ad2d87142b4064803d97a73e"
|
|
|
|
#PV = "1.4+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
SRC_URI = "git://github.com/swaywm/sway;protocol=https;branch=master \
|
|
file://config \
|
|
file://0001-Reinstate-wayland-0-as-starting-display-socket-for-C.patch \
|
|
"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
DEPENDS = "dbus cairo pango wlroots libinput libxkbcommon wayland wayland-native libpam libcap json-c libpcre gdk-pixbuf"
|
|
|
|
FILES:${PN} += "\
|
|
${datadir}/wayland-sessions/sway.desktop \
|
|
"
|
|
|
|
do_install:append() {
|
|
rm ${D}${sysconfdir}/sway/config
|
|
install -m 644 ${WORKDIR}/config ${D}${sysconfdir}/sway/config
|
|
}
|
|
|
|
# Reproducibility issue. Fix me!
|
|
CFLAGS:append = " -Wno-error=date-time"
|
|
|
|
EXTRA_OEMESON += "-Ddefault-wallpaper=false -Dzsh-completions=false -Dbash-completions=false -Dfish-completions=false"
|
|
|
|
|