30 lines
603 B
Bash
30 lines
603 B
Bash
EAPI=8
|
|
|
|
DESCRIPTION="Assortment of utility scripts for lithium host"
|
|
HOMEPAGE="https://stvnliu.me/git/steven/lithium-util"
|
|
|
|
SRC_URI="https://stvnliu.me/git/steven/lithium-util/archive/0.0.4.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
S="${WORKDIR}/lithium-util"
|
|
|
|
RDEPEND="
|
|
media-video/wireplumber
|
|
sci-calculators/wcalc
|
|
gui-apps/wlr-randr
|
|
gui-apps/slurp
|
|
gui-apps/grim
|
|
gui-apps/wl-clipboard
|
|
x11-misc/dunst
|
|
"
|
|
|
|
src_install() {
|
|
for f in scripts/*.sh; do
|
|
cp "$f" "${T}/$(basename "${f%.sh}")" || die
|
|
dobin "${T}/$(basename "${f%.sh}")" || die
|
|
done
|
|
dodoc README.md
|
|
}
|