diff options
author | 2019-05-11 11:19:15 -0400 | |
---|---|---|
committer | 2019-05-11 11:19:33 -0400 | |
commit | 1ce1edc12d80e57df6ad54df6cc0ed64fec15900 (patch) | |
tree | 88bb31ee48901c34ce80805b8fcfbe26e8de5ea4 /media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild | |
parent | package.mask: mask dev-lang/confluence for removal (diff) | |
download | gentoo-1ce1edc12d80e57df6ad54df6cc0ed64fec15900.tar.gz gentoo-1ce1edc12d80e57df6ad54df6cc0ed64fec15900.tar.bz2 gentoo-1ce1edc12d80e57df6ad54df6cc0ed64fec15900.zip |
media-plugins/kodi-inputstream-adaptive: 2.3.18 version bump
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild')
-rw-r--r-- | media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild new file mode 100644 index 00000000000..85e10272539 --- /dev/null +++ b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.3.18.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils kodi-addon + +DESCRIPTION="Kodi's Adaptive inputstream addon" +HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git" + inherit git-r3 + ;; +*) + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/inputstream.adaptive-${PV}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + dev-libs/expat + =media-tv/kodi-18* + =media-libs/kodi-platform-18* + =dev-libs/libplatform-2* + " +RDEPEND=" + ${DEPEND} + " |