Files
guru/dev-nim/nimbus/nimbus-1.0.0.ebuild
Anna (cybertailor) Vyalkova 494d587b8d dev-nim/nimbus: update HOMEPAGE
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-11-13 19:47:05 +05:00

40 lines
563 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nim-utils
DESCRIPTION="A Nim build system"
HOMEPAGE="
https://nimbus.sysrq.in/
https://git.sysrq.in/nimbus/about/
"
SRC_URI="https://git.sysrq.in/${PN}/snapshot/${P}.tar.gz"
LICENSE="Apache-2.0 BSD"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="dev-lang/nim"
BDEPEND="${RDEPEND}"
src_configure() {
nim_gen_config
}
src_compile() {
enim c src/${PN}
}
src_test() {
etestament all
}
src_install() {
dobin src/${PN}
doman ${PN}.1
einstalldocs
}