29 lines
492 B
Bash
29 lines
492 B
Bash
EAPI=8
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Lightweight Gradio WebUI for stable-diffusion.cpp"
|
|
HOMEPAGE="https://github.com/daniandtheweb/sd.cpp-webui"
|
|
EGIT_REPO_URI="https://github.com/daniandtheweb/sd.cpp-webui.git"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
|
|
RDEPEND="
|
|
dev-python/gradio
|
|
"
|
|
|
|
src_install() {
|
|
insinto /usr/share/sd.cpp-webui
|
|
|
|
doins sdcpp_webui.py
|
|
doins -r defaults
|
|
doins -r modules
|
|
|
|
exeinto /usr/share/sd.cpp-webui
|
|
doexe sdcpp_webui.sh
|
|
|
|
dodoc README.md
|
|
}
|