blob: 3d29e726e5d2df60686095d1a8f4108eec99704c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Hyprshot is an utility to easily take screenshot in Hyprland using your mouse"
HOMEPAGE="https://github.com/Gustash/Hyprshot/"
EGIT_REPO_URI="https://github.com/Gustash/Hyprshot.git/"
LICENSE="GPL-3"
SLOT="0"
IUSE="+xdg +freeze"
RDEPEND="
app-misc/jq
app-shells/bash
gui-apps/grim
gui-apps/slurp
gui-apps/wl-clipboard
gui-wm/hyprland
x11-libs/libnotify
xdg? ( x11-misc/xdg-user-dirs )
freeze? ( gui-apps/hyprpicker )
"
src_install() {
dobin hyprshot
einstalldocs
}
|