kodi-visualization-goom-1.1.0.ebuild 650 B

12345678910111213141516171819202122232425262728293031323334353637
  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="Goom visualizer for Kodi"
  6. HOMEPAGE="https://github.com/notspiff/visualization.goom"
  7. SRC_URI=""
  8. case ${PV} in
  9. 9999)
  10. SRC_URI=""
  11. EGIT_REPO_URI="git://github.com/notspiff/visualization.goom.git"
  12. inherit git-r3
  13. ;;
  14. *)
  15. KEYWORDS="~amd64 ~x86"
  16. SRC_URI="https://github.com/notspiff/visualization.goom/archive/v${PV}.tar.gz -> ${P}.tar.gz"
  17. S="${WORKDIR}/visualization.goom-${PV}"
  18. ;;
  19. esac
  20. LICENSE="GPL-2"
  21. SLOT="0"
  22. IUSE=""
  23. DEPEND="
  24. media-tv/kodi
  25. virtual/opengl
  26. "
  27. RDEPEND="
  28. ${DEPEND}
  29. "