Files
guru/dev-nim/nake/nake-1.9.4.ebuild
Anna (cybertailor) Vyalkova e070a5e2fb dev-nim/nake: new package, add 1.9.4
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2022-07-11 11:42:10 +05:00

25 lines
525 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit nimble
DESCRIPTION="make-like for Nim. Describe your builds as tasks!"
HOMEPAGE="https://github.com/fowlmouth/nake"
SRC_URI="https://github.com/fowlmouth/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
src_test() {
local PATH="${BUILD_DIR}:${PATH}"
cd "${S}"/tests || die
for t in t*.nim; do
[[ -f ${t} ]] || continue
enim --hints:off r "${t}"
done
}