mirror of
https://codeberg.org/flk/meta-wayland.git
synced 2025-07-12 22:14:30 +02:00
move recipes
This commit is contained in:
52
recipes-support/hyprland/hyprpaper_git.bb
Normal file
52
recipes-support/hyprland/hyprpaper_git.bb
Normal file
@ -0,0 +1,52 @@
|
||||
SUMMARY = "Hyprpaper is a blazing fast wallpaper utility for Hyprland."
|
||||
HOMEPAGE = "https://hyprland.org/"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=936078e4e67b0e1e1bd1e862d4ffbc25"
|
||||
|
||||
SRC_URI = "git://github.com/hyprwm/hyprpaper.git;protocol=https;branch=main"
|
||||
|
||||
PV = "0.6.0"
|
||||
SRCREV = "1013a80608891f120184aa7c1a7cfde04bfc96fb"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
DEPENDS += " \
|
||||
cairo \
|
||||
file \
|
||||
fribidi \
|
||||
hyprlang \
|
||||
jpeg \
|
||||
libwebp \
|
||||
libxdmcp \
|
||||
pango \
|
||||
pcre \
|
||||
pcre2 \
|
||||
util-linux \
|
||||
wayland \
|
||||
wayland-native \
|
||||
wayland-protocols \
|
||||
wlroots \
|
||||
"
|
||||
|
||||
RDEPENDS:${PN} = "hyprlang"
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "wayland"
|
||||
|
||||
EXTRA_OEMAKE = " \
|
||||
WAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner \
|
||||
WAYLAND_PROTOCOLS=${STAGING_DATADIR}/wayland-protocols \
|
||||
"
|
||||
|
||||
do_configure:prepend() {
|
||||
sed -i -e '$ainstall(TARGETS hyprpaper)' ${S}/CMakeLists.txt
|
||||
}
|
||||
|
||||
do_compile:prepend() {
|
||||
cd ${S} && oe_runmake protocols
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m0755 ${B}/hyprpaper ${D}${bindir}
|
||||
}
|
||||
|
||||
inherit cmake pkgconfig features_check
|
49
recipes-support/hyprland/hyprpicker_git.bb
Normal file
49
recipes-support/hyprland/hyprpicker_git.bb
Normal file
@ -0,0 +1,49 @@
|
||||
SUMMARY = "A wlroots-compatible Wayland color picker that does not suck."
|
||||
HOMEPAGE = "https://hyprland.org/"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=936078e4e67b0e1e1bd1e862d4ffbc25"
|
||||
|
||||
SRC_URI = "git://github.com/hyprwm/hyprpicker.git;protocol=https;branch=main"
|
||||
|
||||
PV = "0.2.0"
|
||||
S = "${WORKDIR}/git"
|
||||
SRCREV = "8a7799ae20f3e2e2e716271c21fc9213319ca2a4"
|
||||
|
||||
DEPENDS = " \
|
||||
cairo \
|
||||
fribidi \
|
||||
jpeg \
|
||||
libxdmcp \
|
||||
libxkbcommon \
|
||||
pango \
|
||||
pcre \
|
||||
util-linux \
|
||||
wayland \
|
||||
wayland-native \
|
||||
wayland-protocols \
|
||||
wlroots \
|
||||
"
|
||||
|
||||
RDEPENDS:${PN} = "wl-clipboard"
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "wayland"
|
||||
|
||||
EXTRA_OEMAKE = "\
|
||||
WAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner \
|
||||
WAYLAND_PROTOCOLS=${STAGING_DATADIR}/wayland-protocols \
|
||||
"
|
||||
|
||||
do_configure:prepend() {
|
||||
sed -i -e '$ainstall(TARGETS hyprpicker)' ${S}/CMakeLists.txt
|
||||
}
|
||||
|
||||
do_compile:prepend() {
|
||||
cd ${S} && oe_runmake protocols
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m0755 ${B}/hyprpicker ${D}${bindir}
|
||||
}
|
||||
|
||||
inherit cmake pkgconfig features_check
|
Reference in New Issue
Block a user