mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-13 15:23:27 +08:00
libcdio: new package
The GNU Compact Disc Input and Control library. This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli <ebsi4711@gmail.com> Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: gimli <ebsi4711@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
adb614b891
commit
cdb6247c37
@ -451,6 +451,7 @@ source "package/celt051/Config.in"
|
||||
source "package/fdk-aac/Config.in"
|
||||
source "package/libao/Config.in"
|
||||
source "package/libcdaudio/Config.in"
|
||||
source "package/libcdio/Config.in"
|
||||
source "package/libcue/Config.in"
|
||||
source "package/libcuefile/Config.in"
|
||||
source "package/libid3tag/Config.in"
|
||||
|
11
package/libcdio/Config.in
Normal file
11
package/libcdio/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_LIBCDIO
|
||||
bool "libcdio"
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
help
|
||||
The GNU Compact Disc Input and Control library.
|
||||
|
||||
http://www.gnu.org/software/libcdio/
|
||||
|
||||
comment "libcdio needs a toolchain w/ C++"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP
|
18
package/libcdio/libcdio.mk
Normal file
18
package/libcdio/libcdio.mk
Normal file
@ -0,0 +1,18 @@
|
||||
################################################################################
|
||||
#
|
||||
# libcdio
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBCDIO_VERSION = 0.90
|
||||
LIBCDIO_SITE = $(BR2_GNU_MIRROR)/libcdio
|
||||
LIBCDIO_INSTALL_STAGING = YES
|
||||
LIBCDIO_LICENSE = GPLv3+
|
||||
LIBCDIO_LICENSE_FILES = COPYING
|
||||
LIBCDIO_CONF_OPT = --disable-example-progs
|
||||
|
||||
ifeq ($(BR2_ENABLE_LOCALE),)
|
||||
LIBCDIO_DEPENDENCIES += libiconv
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user