Config.in 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  9. depends on BR2_USE_WCHAR # boost
  10. depends on BR2_PACKAGE_RPI_USERLAND
  11. select BR2_PACKAGE_ALSA_LIB
  12. select BR2_PACKAGE_BOOST
  13. select BR2_PACKAGE_DBUS
  14. select BR2_PACKAGE_FFMPEG
  15. select BR2_PACKAGE_FFMPEG_AVRESAMPLE
  16. select BR2_PACKAGE_FFMPEG_SWSCALE
  17. select BR2_PACKAGE_FREETYPE
  18. select BR2_PACKAGE_LIBIDN
  19. select BR2_PACKAGE_LIBUSB
  20. select BR2_PACKAGE_PCRE
  21. select BR2_PACKAGE_ZLIB
  22. help
  23. OMXPlayer is a commandline OMX player for the Raspberry
  24. Pi. It was developed as a testbed for the XBMC Raspberry PI
  25. implementation and is quite handy to use standalone.
  26. https://github.com/popcornmix/omxplayer
  27. comment "omxplayer needs rpi-userland and a toolchain w/ C++, threads, wchar, dynamic library, gcc >= 4.9"
  28. depends on BR2_arm
  29. depends on BR2_USE_MMU
  30. depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
  31. depends on !BR2_PACKAGE_RPI_USERLAND
  32. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  33. || !BR2_USE_WCHAR || BR2_STATIC_LIBS \
  34. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9