Files
guru/dev-util/go-task/go-task-3.38.0-r1.ebuild
Matt Jolly 48da25ddee */*: whitespace fixes
This fixes the current whitespace issues reported by
`pkgcruft scan -r WhitespaceUnneeded`.

Signed-off-by: Matt Jolly <kangie@gentoo.org>
2025-05-21 16:46:04 +10:00

23 lines
483 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://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
}