blob: 0dc51d7b2cf106ac1cd7a78be594e69f45547529 (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
EGIT_REPO_URI="https://github.com/mazunki/wl-scripts.git"
DESCRIPTION="A set of utils for wlroots window managers"
HOMEPAGE="https://github.com/mazunki/wl-scripts"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
app-alternatives/awk
app-misc/jq
>=gui-apps/wofi-1.3
gui-apps/slurp
gui-wm/sway
"
src_install() {
exeinto "/usr/bin/"
doexe "${S}"/src/*
}
|