mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
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:
parent
547bcd9419
commit
9fea00efb8
1 changed files with 32 additions and 0 deletions
32
media-radio/rdio-scanner/rdio-scanner-9999.ebuild
Normal file
32
media-radio/rdio-scanner/rdio-scanner-9999.ebuild
Normal 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
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue