dev-util/go-task: new package, add 3.38.0-r1

Signed-off-by: Skyler Mäntysaari <sm+git@skym.fi>
This commit is contained in:
Skyler Mäntysaari
2024-09-01 14:23:55 +03:00
parent b2af2140e2
commit 5574068f3e
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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 https://samip537.kapsi.fi/gentoo-mirror/go-task-${PV}-vendor.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
}