rdio-scanner-bin: I need this to work

This probably needs an openrc file to ease life.  Maybe an env file to
add it to path
This commit is contained in:
Rick Farina (Zero_Chaos) 2021-12-05 14:58:41 -05:00
parent e77b64fa83
commit 85e619bd60
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,4 @@
DIST rdio-scanner-linux-386-v6.0.3.zip 10044225 BLAKE2B d8ef5ae99e45d3bbc232c9fe26efc720e43f272b8c169f4125a6f0e4e0e404933a3f747c6ffa99c6da855e6b260c3bcff5e6d013d8e4bc82f13a9043cacea2e0 SHA512 2290e26d36c4637710e45f97164186c0a8cb407e3d4ea12cdfd557e36da609d4cfa46339d3bb46fa5cfd1efc5565ff846a42da0aa248b72addbf2b7dc2630363
DIST rdio-scanner-linux-amd64-v6.0.3.zip 10642291 BLAKE2B 88245c77c523a6d3d837bcd7d7fc82018fb698c96488c4db43c44efdd564e7ebf19bea9c3bf8927dba004b96dab0be9580046da44e282841f98e63802493206d SHA512 b026636d26e8c5f65e0d61c2f469c02933eac9878057ca79bf104c3f3e1e791de5ba28988e0a0e24dbe46129a0b827906cbcc7d9aae2b189de3a6daa3ae52171
DIST rdio-scanner-linux-arm-v6.0.3.zip 9748174 BLAKE2B e2727a02537e47b689c7e8bf108eaa42cd6ff9eabdf4419ce95adf6a8d5fd5e07dbc63753dec10828519b8505eb1cab9b71f091fb01978a4050199db80d3d117 SHA512 cbc46f6f0f9efcba9b0c70069ec2c683c38c9b591bdf0d922b5cc9af2eb35249b8dcfba7e155577a620c9c134c9595d290ce765663ece7345e5070fb8716f25a
DIST rdio-scanner-linux-arm64-v6.0.3.zip 9839264 BLAKE2B 782a735299f69c8729483189d7cfe602be12930f6e1d357f879c5cd6cfc1af4a6d2e8b816c4a874c82b3693d2f8ac67a78c2de1eef2ce1c9d7fd12a5fda3b4f1 SHA512 f81fe470509b0bec7645222a7960f88b7377aa940d4bb326e3d194f8175eb8b73b91f21f37b825c64c4aeac680c27d4bf4dd57df1a88184f1056aa362df6f2dd

View file

@ -0,0 +1,25 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="ingest and distribute audio files generated by various software-defined radio recorders"
HOMEPAGE="https://github.com/chuot/rdio-scanner"
SRC_URI="amd64? ( https://github.com/chuot/rdio-scanner/releases/download/v${PV}-beta/rdio-scanner-linux-amd64-v${PV}.zip )
x86? ( https://github.com/chuot/rdio-scanner/releases/download/v${PV}-beta/rdio-scanner-linux-386-v${PV}.zip )
arm? ( https://github.com/chuot/rdio-scanner/releases/download/v${PV}-beta/rdio-scanner-linux-arm-v${PV}.zip )
arm64? ( https://github.com/chuot/rdio-scanner/releases/download/v${PV}-beta/rdio-scanner-linux-arm64-v${PV}.zip )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
S="${WORKDIR}"
QA_PREBUILD='opt/rdio-scanner-bin/rdio-scanner-bin'
src_install() {
exeinto "/opt/${PN}"
newexe rdio-scanner "${PN}"
insinto "/usr/share/doc/${PN}-${PVR}"
newins "rdio-scanner.pdf" "rdio-scanner-${PVF}.pdf"
}