kodi-inputstream-rtmp-9999.ebuild 658 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Copyright 1999-2017 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=6
  4. inherit cmake-utils kodi-addon
  5. DESCRIPTION="Kodi's RTMP inputstream addon"
  6. HOMEPAGE="https://github.com/notspiff/inputstream.rtmp"
  7. SRC_URI=""
  8. case ${PV} in
  9. 9999)
  10. SRC_URI=""
  11. EGIT_REPO_URI="git://github.com/notspiff/inputstream.rtmp.git"
  12. inherit git-r3
  13. ;;
  14. *)
  15. KEYWORDS="~amd64 ~x86"
  16. SRC_URI="https://github.com/notspiff/inputstream.rtmp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
  17. S="${WORKDIR}/inputstream.rtmp-${PV}"
  18. ;;
  19. esac
  20. LICENSE="GPL-2"
  21. SLOT="0"
  22. IUSE=""
  23. DEPEND="
  24. =media-tv/kodi-9999
  25. media-video/rtmpdump
  26. "
  27. RDEPEND="
  28. ${DEPEND}
  29. "