2014-01-19 22:03:58 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# libcdio
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2014-04-03 21:01:02 +02:00
|
|
|
LIBCDIO_VERSION = 0.92
|
2014-01-19 22:03:58 +01:00
|
|
|
LIBCDIO_SITE = $(BR2_GNU_MIRROR)/libcdio
|
|
|
|
LIBCDIO_INSTALL_STAGING = YES
|
|
|
|
LIBCDIO_LICENSE = GPLv3+
|
|
|
|
LIBCDIO_LICENSE_FILES = COPYING
|
2014-01-27 22:03:45 +01:00
|
|
|
LIBCDIO_CONF_OPT = --disable-example-progs --disable-cddb
|
2014-01-19 22:03:58 +01:00
|
|
|
|
|
|
|
ifeq ($(BR2_ENABLE_LOCALE),)
|
|
|
|
LIBCDIO_DEPENDENCIES += libiconv
|
|
|
|
endif
|
|
|
|
|
2014-01-27 22:05:45 +01:00
|
|
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),)
|
|
|
|
LIBCDIO_CONF_OPT += --disable-cxx
|
|
|
|
endif
|
|
|
|
|
2014-01-25 18:53:14 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
|
|
LIBCDIO_DEPENDENCIES += ncurses
|
|
|
|
else
|
|
|
|
LIBCDIO_CONF_OPT += --without-cdda-player
|
|
|
|
endif
|
|
|
|
|
2014-01-19 22:03:58 +01:00
|
|
|
$(eval $(autotools-package))
|