gui-apps/hyprpaper: add 0.3.0

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy 2023-05-30 11:26:38 -04:00
parent 11a9dd7c24
commit 1729cbfdca
No known key found for this signature in database
GPG Key ID: BEF2297448848842
2 changed files with 35 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST hyprpaper-0.2.0.gh.tar.gz 26200 BLAKE2B b55e6ccb9bff431a411dfa5c6b43176804b4c89d2b048453830ed3a746c2b71739ba518306a38b0f07ad4885b06e104a9c86e55564a6aeede7f8900b81bf34a3 SHA512 f6f8d117bbf52e8f353cf2b3d9dee3b3e1fae1f6bab78f9bdbd437c403696fab615c3c4ef8acc818b585937e8adf1a4b7c7efd3b390e06a8d38ad4888f4e0da5
DIST hyprpaper-0.3.0.gh.tar.gz 26787 BLAKE2B 114ef9c68372a4081035282c1826d66fdb5306eea18e91663dd31645bcb6972d1fd7ad913b0c1f452001025f6c54b5dd8cefbb634702a4440901102822b5a82d SHA512 6b1ccdc7257db89f435c0d4b4afb6f42a46f9d0635d211d4c0408d6a801c4438eecad53a512e5ea51a768e883e4e446b8a8efdca4b1336dc51499e586cbe070f

View File

@ -0,0 +1,34 @@
# Copyright 2023 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"
BDEPEND="
dev-libs/wayland
dev-libs/wayland-protocols
dev-util/cmake
dev-util/wayland-scanner
media-libs/libglvnd
media-libs/libjpeg-turbo
x11-libs/cairo
x11-libs/pango
"
src_compile() {
emake protocols
cmake_src_compile
}
src_install() {
dobin "${BUILD_DIR}/${PN}"
}