Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_OMXPLAYER
  2. bool "omxplayer"
  3. depends on BR2_arm
  4. depends on BR2_USE_MMU # dbus
  5. depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS # ffmpeg
  6. depends on BR2_INSTALL_LIBSTDCPP # boost
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib, boost, libusb
  8. depends on BR2_USE_WCHAR # boost
  9. depends on BR2_PACKAGE_RPI_USERLAND
  10. select BR2_PACKAGE_ALSA_LIB
  11. select BR2_PACKAGE_BOOST
  12. select BR2_PACKAGE_DBUS
  13. select BR2_PACKAGE_FFMPEG
  14. select BR2_PACKAGE_FFMPEG_AVRESAMPLE
  15. select BR2_PACKAGE_FFMPEG_SWSCALE
  16. select BR2_PACKAGE_FREETYPE
  17. select BR2_PACKAGE_LIBIDN
  18. select BR2_PACKAGE_LIBUSB
  19. select BR2_PACKAGE_PCRE
  20. select BR2_PACKAGE_ZLIB
  21. help
  22. OMXPlayer is a commandline OMX player for the Raspberry
  23. Pi. It was developed as a testbed for the XBMC Raspberry PI
  24. implementation and is quite handy to use standalone.
  25. https://github.com/popcornmix/omxplayer
  26. comment "omxplayer needs rpi-userland and a toolchain w/ C++, threads, wchar, dynamic library"
  27. depends on BR2_arm
  28. depends on BR2_USE_MMU
  29. depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
  30. depends on !BR2_PACKAGE_RPI_USERLAND
  31. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  32. || !BR2_USE_WCHAR || BR2_STATIC_LIBS