mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
23 lines
483 B
Bash
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
|
|
}
|