guru/gui-apps/hyprpicker/hyprpicker-0.2.0.ebuild
Joe Kappus 536d4e7a4b
gui-apps/hyprpicker: RDEPEND QA fixup
Closes: https://bugs.gentoo.org/932561
Signed-off-by: Joe Kappus <joe@wt.gd>
2024-05-24 01:19:11 -04:00

39 lines
684 B
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="A wlroots-compatible Wayland color picker that does not suck"
HOMEPAGE="https://github.com/hyprwm/hyprpicker"
SRC_URI="https://github.com/hyprwm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-libs/wayland
x11-libs/cairo
x11-libs/pango
"
BDEPEND="
${RDEPEND}
dev-libs/wayland-protocols
dev-util/wayland-scanner
media-libs/libglvnd
media-libs/libjpeg-turbo
x11-libs/libxkbcommon
"
src_compile() {
emake protocols
cmake_src_compile
}
src_install() {
dobin "${BUILD_DIR}/${PN}"
}