rdio-scanner: not working yet

this starts the build but clearly needs a bunch of go stuff which I
don't even begin to understand
This commit is contained in:
Rick Farina (Zero_Chaos) 2021-12-01 16:00:58 -05:00
parent 547bcd9419
commit 9fea00efb8
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC

View file

@ -0,0 +1,32 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION=""
HOMEPAGE=""
EGIT_REPO_URI="https://github.com/chuot/rdio-scanner.git"
EGIT_BRANCH="v6-beta"
SRC_URI=""
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="doc"
DEPEND="doc? ( app-text/pandoc )"
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
addpredict /etc/npm
if ! use doc; then
sed -i '/pandoc/d' Makefile
fi
use amd64 && emake linux-amd64
use x86 && emake linux-386
use arm64 && emake linux-arm64
use arm && emake linux-arm
}