eb23811a13
Signed-off-by: SigHunter <sighunter@gmx.de>
29 lines
671 B
Bash
29 lines
671 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="Golang version of the NZB Monkey with included NZB direct search"
|
|
HOMEPAGE="https://github.com/Tensai75/nzb-monkey-go"
|
|
SRC_URI="
|
|
https://github.com/Tensai75/nzb-monkey-go/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://gitlab.com/api/v4/projects/37881342/packages/generic/${PN}/${PV}/${P}-deps.tar.xz
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
# vendored licenses
|
|
LICENSE+=" Apache-2.0 BSD BSD-2 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_compile() {
|
|
ego build -ldflags="-X main.appVersion=${PV}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin nzb-monkey-go
|
|
einstalldocs
|
|
}
|