2022-03-14 17:37:22 +01:00
|
|
|
SUMMARY = "Output management utility for sway Wayland compositor, inspired by wdisplays and wlay."
|
|
|
|
LICENSE = "MIT"
|
2022-07-21 09:23:34 +02:00
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2e53cad864b84be468b2fc0b511942ce"
|
2022-03-14 17:37:22 +01:00
|
|
|
|
|
|
|
SRC_URI = " \
|
|
|
|
git://github.com/nwg-piotr/nwg-displays.git;protocol=https;branch=master \
|
|
|
|
"
|
|
|
|
|
|
|
|
RDEPENDS:${PN} = "\
|
|
|
|
gtk-layer-shell \
|
|
|
|
python3 \
|
|
|
|
python3-pygobject \
|
|
|
|
python-i3ipc \
|
2023-09-24 11:35:52 +02:00
|
|
|
wlr-randr \
|
2022-03-14 17:37:22 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
inherit setuptools3
|
|
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
2023-10-22 14:29:31 +02:00
|
|
|
PV = "0.3.8"
|
|
|
|
SRCREV = "5dcaac24e0907d01e4be17708e87b38c08c49107"
|
2022-03-14 17:37:22 +01:00
|
|
|
|
|
|
|
do_install:append() {
|
|
|
|
install -d ${D}${datadir}/pixmaps ${D}${datadir}/applications
|
|
|
|
install -m 644 ${S}/nwg-displays.desktop ${D}${datadir}/applications
|
|
|
|
install -m 644 ${S}/nwg-displays.svg ${D}${datadir}/pixmaps
|
|
|
|
}
|
|
|
|
|