dev-util/go-task: add 3.50.0

Signed-off-by: Skyler Mäntysaari <sm+gentoo@skym.fi>
This commit is contained in:
Skyler Mäntysaari
2026-04-14 15:23:53 +03:00
parent ba8e65e9d0
commit e21cfc3d88
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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
}