Files
guru/net-misc/gemget/gemget-1.9.0-r1.ebuild
2026-06-09 14:37:36 +02:00

26 lines
566 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Command line downloader for the Gemini protocol"
HOMEPAGE="https://github.com/makew0rld/gemget"
SRC_URI="https://github.com/makew0rld/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
LICENSE="0BSD BSD MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
src_compile() {
ego build -o ${PN} -ldflags="-w" || die
}
src_install() {
dobin ${PN}
dodoc README.md
}