1config BR2_PACKAGE_LIBASS 2 bool "libass" 3 depends on BR2_INSTALL_LIBSTDCPP # harfbuzz 4 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # harfbuzz 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # harfbuzz 6 select BR2_PACKAGE_FREETYPE 7 select BR2_PACKAGE_HARFBUZZ 8 select BR2_PACKAGE_LIBFRIBIDI 9 help 10 libass is a portable subtitle renderer for the ASS/SSA 11 (Advanced Substation Alpha/Substation Alpha) subtitle format 12 13 https://github.com/libass/libass 14 15comment "libass needs a toolchain w/ C++, gcc >= 4.8" 16 depends on BR2_TOOLCHAIN_HAS_SYNC_4 17 depends on !BR2_INSTALL_LIBSTDCPP || \ 18 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 19