Files
guru/dev-util/go-task/go-task-3.51.1.ebuild
Skyler Mäntysaari 798b5c88cc dev-util/go-task: add 3.51.1, drop 3.49.1
Signed-off-by: Skyler Mäntysaari <sm+gentoo@skym.fi>
2026-05-18 10:34:33 +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
}