rand/gui-apps/hyprpicker/hyprpicker-9999.ebuild
2022-12-31 23:02:09 +01:00

37 lines
645 B
Bash

# Copyright 1999-2023 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"
inherit git-r3
EGIT_REPO_URI="https://github.com/hyprwm/hyprpicker/"
KEYWORDS="~amd64 ~arm64"
LICENSE="BSD"
SLOT="0"
DEPEND="
dev-libs/wayland
media-libs/libjpeg-turbo
x11-libs/cairo
x11-libs/pango
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-libs/wayland-protocols
virtual/pkgconfig
"
src_compile() {
emake protocols
cmake_src_compile
}
src_install() {
dobin "${BUILD_DIR}/hyprpicker"
}