2021-08-02 07:45:55 +02:00
|
|
|
SUMMARY = "A lightweight notification daemon for Wayland."
|
|
|
|
HOMEPAGE = "github.com/emersion/mako"
|
|
|
|
SECTION = "Wayland"
|
|
|
|
LICENSE = "MIT"
|
|
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e316e9609dd7672b87ff25b46b2cf3e1"
|
|
|
|
|
|
|
|
REQUIRED_DISTRO_FEATURES = "wayland"
|
|
|
|
|
|
|
|
SRC_URI = " \
|
2021-11-23 17:16:27 +01:00
|
|
|
git://github.com/emersion/mako.git;protocol=https;branch=master \
|
2021-08-02 07:45:55 +02:00
|
|
|
"
|
|
|
|
|
|
|
|
DEPENDS = " \
|
|
|
|
pango \
|
|
|
|
cairo \
|
|
|
|
libpng \
|
|
|
|
wayland \
|
|
|
|
wayland-native \
|
|
|
|
wayland-protocols \
|
|
|
|
"
|
|
|
|
|
2021-08-07 06:23:26 +02:00
|
|
|
RDEPENDS:${PN} = "dbus"
|
2021-08-02 07:45:55 +02:00
|
|
|
|
2021-08-07 06:23:26 +02:00
|
|
|
RRECOMMENDS:${PN} = "jq"
|
2021-08-02 07:45:55 +02:00
|
|
|
|
|
|
|
inherit meson pkgconfig features_check
|
|
|
|
|
|
|
|
PACKAGECONFIG[systemd] = ",,systemd"
|
|
|
|
PACKAGECONFIG[sysvinit] = ",,elogind"
|
|
|
|
PACKAGECONFIG[man-pages] = ",,scdoc-native"
|
|
|
|
PACKAGECONFIG[icons] = ",,gdk-pixbuf"
|
|
|
|
|
|
|
|
PACKAGECONFIG ?= " \
|
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \
|
|
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'sysvinit', d)} \
|
|
|
|
icons \
|
|
|
|
man-pages \
|
|
|
|
"
|
|
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
2024-03-26 10:28:02 +01:00
|
|
|
PV = "1.8.0"
|
|
|
|
SRCREV = "b25d38f53b4f17830111f6ea82c5985e3f3d796a"
|
2021-08-02 07:45:55 +02:00
|
|
|
|
|
|
|
EXTRA_OEMESON += "--buildtype release"
|
|
|
|
|
2021-08-07 06:23:26 +02:00
|
|
|
FILES:${PN} += "${datadir}"
|
2021-08-02 07:45:55 +02:00
|
|
|
|
|
|
|
BBCLASSEXTEND = ""
|
|
|
|
|