23 lines
351 B
Bash
23 lines
351 B
Bash
# Copyright 2026 Shin'ya Minazuki
|
|
EAPI=8
|
|
|
|
inherit git-r3 go-module
|
|
|
|
DESCRIPTION="A staging HTTP server"
|
|
HOMEPAGE="https://git.laidback.moe/shinyoukai/yomi"
|
|
EGIT_REPO_URI="https://git.laidback.moe/shinyoukai/yomi"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
|
|
src_compile() {
|
|
export CGO_ENABLED=0
|
|
|
|
ego build -o bin/${PN}
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/${PN}
|
|
}
|