diff options
author | Craig Andrews <candrews@integralblue.com> | 2017-01-09 15:24:47 -0500 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-09 22:25:55 +0200 |
commit | 2825b6e93761621c6162913df20b21169df024c8 (patch) | |
tree | 9bad032591663c2da65d9c2f00b06ff74e2cc45c /media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild | |
parent | dev-python/ansicolor: add missing dev-python/setuptools DEPEND (diff) | |
download | gentoo-2825b6e93761621c6162913df20b21169df024c8.tar.gz gentoo-2825b6e93761621c6162913df20b21169df024c8.tar.bz2 gentoo-2825b6e93761621c6162913df20b21169df024c8.zip |
media-plugins/kodi-*: add live ebuilds for all add-ons currently available in kodi upstream
Gentoo-bug: 555792
Closes: https://github.com/gentoo/gentoo/pull/3195
Diffstat (limited to 'media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild')
-rw-r--r-- | media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild b/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild new file mode 100644 index 000000000000..ed6ad80c9121 --- /dev/null +++ b/media-plugins/kodi-audiodecoder-sidplay/kodi-audiodecoder-sidplay-1.1.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-utils kodi-addon + +DESCRIPTION="SidPlay decoder addon for Kodi" +HOMEPAGE="https://github.com/notspiff/audiodecoder.sidplay" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="git://github.com/notspiff/audiodecoder.sidplay.git" + inherit git-r3 + ;; +*) + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/notspiff/audiodecoder.sidplay/archive/v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/audiodecoder.sidplay-${PV}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + media-tv/kodi + media-libs/kodi-platform + media-libs/libsidplay:2 + " + +RDEPEND=" + ${DEPEND} + " |