libcdio.mk 763 B

123456789101112131415161718192021222324252627282930
  1. ################################################################################
  2. #
  3. # libcdio
  4. #
  5. ################################################################################
  6. LIBCDIO_VERSION = 2.1.0
  7. LIBCDIO_SOURCE = libcdio-$(LIBCDIO_VERSION).tar.bz2
  8. LIBCDIO_SITE = $(BR2_GNU_MIRROR)/libcdio
  9. LIBCDIO_INSTALL_STAGING = YES
  10. LIBCDIO_LICENSE = GPL-3.0+
  11. LIBCDIO_LICENSE_FILES = COPYING
  12. LIBCDIO_CPE_ID_VENDOR = gnu
  13. LIBCDIO_CONF_OPTS = --disable-example-progs --disable-cddb
  14. ifeq ($(BR2_ENABLE_LOCALE),)
  15. LIBCDIO_DEPENDENCIES += libiconv
  16. endif
  17. ifeq ($(BR2_INSTALL_LIBSTDCPP),)
  18. LIBCDIO_CONF_OPTS += --disable-cxx
  19. endif
  20. ifeq ($(BR2_PACKAGE_NCURSES),y)
  21. LIBCDIO_DEPENDENCIES += ncurses
  22. else
  23. LIBCDIO_CONF_OPTS += --without-cdda-player
  24. endif
  25. $(eval $(autotools-package))