Files
guru/app-misc/wtf/wtf-0.43.0.ebuild
Timur Kuprava fe5d01f492 app-misc/wtf: new package
Signed-off-by: Timur Kuprava <kupravagoodman@proton.me>
2025-05-19 19:20:17 +03:00

28 lines
612 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="The personal information dashboard for your terminal"
HOMEPAGE="https://github.com/wtfutil/wtf"
SRC_URI="https://github.com/wtfutil/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://github.com/kuprTheMan/contribute-deps/releases/download/${P}/${P}-deps.tar.xz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
RESTRICT="test"
src_compile() {
ego build -ldflags="-s -w" -o bin/wtfutil
}
src_install() {
dobin bin/wtfutil
dodoc README.md
}