diff options
Diffstat (limited to 'media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild')
-rw-r--r-- | media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild new file mode 100644 index 000000000000..0b2f29c1dfff --- /dev/null +++ b/media-plugins/kodi-inputstream-rtmp/kodi-inputstream-rtmp-1.0.3.ebuild @@ -0,0 +1,36 @@ +# 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="Kodi's RTMP inputstream addon" +HOMEPAGE="https://github.com/notspiff/inputstream.rtmp" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="git://github.com/notspiff/inputstream.rtmp.git" + inherit git-r3 + ;; +*) + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/notspiff/inputstream.rtmp/archive/v${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/inputstream.rtmp-${PV}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + media-tv/kodi + media-video/rtmpdump + " +RDEPEND=" + ${DEPEND} + " |