mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/695226 Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
20 lines
497 B
Bash
20 lines
497 B
Bash
# Copyright 2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
EGO_PN=github.com/bemasher/rtlamr
|
|
inherit golang-build golang-vcs-snapshot
|
|
|
|
DESCRIPTION="software defined radio receiver for utility smart meters"
|
|
HOMEPAGE="https://github.com/bemasher/rtlamr"
|
|
SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="AGPL-3 BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
dodoc src/${EGO_PN}/*.md src/${EGO_PN}/*.csv
|
|
}
|