2021-07-08 08:19:31 +02:00
|
|
|
SUMMARY = "Modular status panel for X11 and Wayland."
|
|
|
|
HOMEPAGE = "https://codeberg.org/dnkl/yambar"
|
|
|
|
BUGTRACKER = "https://codeberg.org/dnkl/yambar/issues"
|
|
|
|
SECTION = "graphics"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=00b01b6aa1e1a7130832b0178f8d7485"
|
|
|
|
|
|
|
|
SRC_URI = " \
|
|
|
|
git://codeberg.org/dnkl/yambar.git;protocol=https;branch=releases/1.6 \
|
|
|
|
"
|
|
|
|
|
|
|
|
DEPENDS = " \
|
|
|
|
libyaml \
|
|
|
|
fcft \
|
|
|
|
tllist \
|
|
|
|
pixman \
|
|
|
|
json-c \
|
|
|
|
libmpdclient \
|
|
|
|
alsa-lib \
|
|
|
|
scdoc-native \
|
|
|
|
"
|
|
|
|
|
2021-08-07 06:23:26 +02:00
|
|
|
RRECOMMENDS:${PN} += " \
|
2021-07-08 08:19:31 +02:00
|
|
|
font-awesome-otf \
|
|
|
|
"
|
|
|
|
|
|
|
|
inherit meson pkgconfig
|
|
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
PV = "1.6.1"
|
|
|
|
SRCREV = "${PV}"
|
|
|
|
|
|
|
|
PACKAGECONFIG[wayland] = "-Dbackend-wayland=enabled,-Dbackend-wayland=disabled,wayland wayland-native wayland-protocols"
|
|
|
|
PACKAGECONFIG[x11] = "-Dbackend-x11=enabled,-Dbackend-x11=disabled,xcb-util xcb-util-cursor xcb-util-wm libxcb"
|
|
|
|
PACKAGECONFIG[systemd] = ",,systemd"
|
|
|
|
PACKAGECONFIG[sysvinit] = ",,eudev"
|
|
|
|
|
|
|
|
PACKAGECONFIG ?= " \
|
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)} \
|
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
|
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'sysvinit', d)} \
|
|
|
|
"
|
|
|
|
|
|
|
|
EXTRA_OEMESON += "--buildtype release"
|
|
|
|
|
|
|
|
PACKAGES += "${PN}-zsh-completion"
|
2021-08-07 06:23:26 +02:00
|
|
|
FILES:${PN}-zsh-completion = "${datadir}/zsh"
|
2021-07-08 08:19:31 +02:00
|
|
|
|
|
|
|
BBCLASSEXTEND = ""
|
|
|
|
|