Files
guru/dev-util/go-task/go-task-3.50.0.ebuild
Skyler Mäntysaari e21cfc3d88 dev-util/go-task: add 3.50.0
Signed-off-by: Skyler Mäntysaari <sm+gentoo@skym.fi>
2026-04-14 15:23:53 +03:00

23 lines
529 B
Bash

EAPI="8"
inherit go-module
DESCRIPTION="A task runner / simpler Make alternative written in Go"
HOMEPAGE="https://taskfile.dev"
SRC_URI="https://github.com/${PN}/task/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://git.skysolutions.fi/gentoo-mirror/guru-vendored/releases/download/go-task-${PV}/go-task-${PV}-deps.tar.xz"
S="${WORKDIR}/task-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64"
src_compile() {
ego build github.com/go-task/task/v3/cmd/task
}
src_install() {
dobin task
default
}