mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
29 lines
555 B
Bash
29 lines
555 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
SRC_URI="https://github.com/mazunki/wl-scripts/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
DESCRIPTION="A set of utils for wlroots window managers"
|
|
HOMEPAGE="https://github.com/mazunki/wl-scripts"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND=""
|
|
RDEPEND="
|
|
app-alternatives/awk
|
|
app-misc/jq
|
|
>=gui-apps/wofi-1.3
|
|
gui-apps/slurp
|
|
gui-wm/sway
|
|
"
|
|
BDEPEND="" # scripts are just sh
|
|
|
|
src_install() {
|
|
exeinto "/usr/bin/"
|
|
doexe "${S}"/src/*
|
|
}
|