initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_LIBBLURAY
|
||||
bool "libbluray"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
libbluray is a client library for accessing bluray disks.
|
||||
|
||||
http://www.videolan.org/developers/libbluray.html
|
||||
|
||||
comment "libbluray needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,4 @@
|
||||
# From http://download.videolan.org/pub/videolan/libbluray/1.3.0/libbluray-1.3.0.tar.bz2.sha512
|
||||
sha512 3d5145e6fd7de099c07f937282112c7abb12a5590b7c0b965b00bddee3837ddfd1a30076aaa6d6278d07a5beee3856f602125983ae075ab30eceb6ac1bd9bcdc libbluray-1.3.0.tar.bz2
|
||||
# Locally computed
|
||||
sha256 b3aa400aca6d2ba1f0bd03bd98d03d1fe7489a3bbb26969d72016360af8a5c9d COPYING
|
||||
@@ -0,0 +1,47 @@
|
||||
################################################################################
|
||||
#
|
||||
# libbluray
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBBLURAY_VERSION = 1.3.0
|
||||
LIBBLURAY_SITE = http://download.videolan.org/pub/videolan/libbluray/$(LIBBLURAY_VERSION)
|
||||
LIBBLURAY_SOURCE = libbluray-$(LIBBLURAY_VERSION).tar.bz2
|
||||
LIBBLURAY_INSTALL_STAGING = YES
|
||||
LIBBLURAY_LICENSE = LGPL-2.1+
|
||||
LIBBLURAY_LICENSE_FILES = COPYING
|
||||
LIBBLURAY_CPE_ID_VENDOR = videolan
|
||||
LIBBLURAY_DEPENDENCIES = host-pkgconf
|
||||
|
||||
LIBBLURAY_CONF_OPTS = --disable-bdjava-jar
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||||
LIBBLURAY_DEPENDENCIES += libiconv
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBUDFREAD),y)
|
||||
LIBBLURAY_DEPENDENCIES += libudfread
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
||||
LIBBLURAY_DEPENDENCIES += freetype
|
||||
LIBBLURAY_CONF_OPTS += --with-freetype
|
||||
else
|
||||
LIBBLURAY_CONF_OPTS += --without-freetype
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
|
||||
LIBBLURAY_DEPENDENCIES += fontconfig
|
||||
LIBBLURAY_CONF_OPTS += --with-fontconfig
|
||||
else
|
||||
LIBBLURAY_CONF_OPTS += --without-fontconfig
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBXML2),y)
|
||||
LIBBLURAY_DEPENDENCIES += libxml2
|
||||
LIBBLURAY_CONF_OPTS += --with-libxml2
|
||||
else
|
||||
LIBBLURAY_CONF_OPTS += --without-libxml2
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user