blob: fa7294581f6d0f18f49bbae08d571b2ef8f78672 (
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
32
33
34
35
36
37
38
39
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
COMMIT="dafb86d6d3adb421e788f0eaeecdf09c497a14e8"
DESCRIPTION="A helper for screenshots within hyprland"
HOMEPAGE="https://github.com/hyprwm/contrib/"
if [[ ${PV} = 9999* ]]; then
SRC_URI="ftp://foo.example.org/${P}.tar.gz"
inherit git-r3
else
SRC_URI="https://github.com/hyprwm/contrib/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="
app-misc/jq
gui-apps/grim
gui-apps/slurp
gui-apps/wl-clipboard
gui-wm/hyprland
x11-libs/libnotify
"
DEPEND="${RDEPEND}"
BDEPEND=""
S="${WORKDIR}/contrib-${COMMIT}/${PN}"
src_install() {
dodoc grimblast.1
dobin grimblast
}
|