2022-01-29 14:22:23 +01:00
|
|
|
SUMMARY = "A simple notification daemon with a GTK gui for notifications and the control center."
|
|
|
|
HOMEPAGE = "https://github.com/ErikReider/SwayNotificationCenter"
|
|
|
|
BUGTRACKER = "github.com/ErikReider/SwayNotificationCenter"
|
|
|
|
LICENSE = "GPL-3.0-only"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a"
|
|
|
|
|
|
|
|
|
|
|
|
DEPENDS = " \
|
|
|
|
gtk+3 \
|
|
|
|
gtk-layer-shell \
|
|
|
|
json-glib \
|
|
|
|
libhandy \
|
|
|
|
"
|
|
|
|
|
|
|
|
SRC_URI = " \
|
|
|
|
git://github.com/ErikReider/SwayNotificationCenter.git;protocol=https;nobranch=1 \
|
|
|
|
"
|
|
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
2022-07-02 08:33:24 +02:00
|
|
|
PV = "0.6.3"
|
|
|
|
SRCREV = "3b317c45129f8051d6c3be9d2894d8ae15449dcd"
|
2022-01-29 14:22:23 +01:00
|
|
|
|
|
|
|
PACKAGECONFIG[bash] = "-Dbash-completions=true,-Dbash-completions=false"
|
|
|
|
PACKAGECONFIG[fish] = "-Dfish-completions=true,-Dfish-completions=false"
|
2022-04-13 06:44:31 +02:00
|
|
|
PACKAGECONFIG[man-pages] = "-Dman-pages=true,-Dman-pages=false,scdoc-native"
|
|
|
|
PACKAGECONFIG[scripting] = "-Dscripting=true,-Dscripting=false"
|
2022-01-29 14:22:23 +01:00
|
|
|
PACKAGECONFIG[systemd] = "-Dsystemd-service=true,-Dsystemd-service=false"
|
2022-04-13 06:44:31 +02:00
|
|
|
PACKAGECONFIG[zsh] = "-Dzsh-completions=true,-Dzsh-completions=false"
|
2022-01-29 14:22:23 +01:00
|
|
|
|
|
|
|
PACKAGECONFIG ?= " \
|
|
|
|
bash \
|
|
|
|
"
|
|
|
|
|
|
|
|
inherit meson pkgconfig vala
|
|
|
|
|
|
|
|
EXTRA_OEMESON += "--buildtype release"
|
|
|
|
|
|
|
|
FILES:${PN} += "${datadir}"
|
|
|
|
|
|
|
|
BBCLASSEXTEND = ""
|
|
|
|
|