update lithium-util to 0.0.4 (add ereport script)

This commit is contained in:
Zhongheng Liu 2026-05-19 09:47:54 +02:00
commit 475ee695db
2 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,30 @@
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
}