mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
41 lines
714 B
Bash
41 lines
714 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="A blazing fast wayland wallpaper utility"
|
|
HOMEPAGE="https://github.com/hyprwm/hyprpaper"
|
|
SRC_URI="https://github.com/hyprwm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/hyprlang:=
|
|
dev-libs/wayland
|
|
dev-libs/wayland-protocols
|
|
dev-util/wayland-scanner
|
|
dev-vcs/git
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
gui-libs/wlroots
|
|
media-libs/libglvnd
|
|
media-libs/libjpeg-turbo
|
|
media-libs/libwebp
|
|
x11-libs/cairo
|
|
x11-libs/pango
|
|
"
|
|
|
|
src_compile() {
|
|
emake protocols
|
|
cmake_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
dobin "${BUILD_DIR}/${PN}"
|
|
}
|