initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
config BR2_PACKAGE_DVDAUTHOR
bool "dvdauthor"
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_LIBPNG
help
DVDAuthor is a set of tools to help you author the file and
directory structure of a DVD-Video disc, including
programmatic commands for implementing interactive behaviour.
It is driven by command lines and XML control files, though
there are other programs that provide GUI-based front ends
if you prefer
http://dvdauthor.sourceforge.net
if BR2_PACKAGE_DVDAUTHOR
config BR2_PACKAGE_DVDAUTHOR_DVDUNAUTHOR
bool "dvdunauthor"
select BR2_PACKAGE_LIBDVDREAD
help
This option enables the dvdunauthor program, which requires
libdvdread.
endif
+6
View File
@@ -0,0 +1,6 @@
# From https://sourceforge.net/projects/dvdauthor/files
md5 1173dcb8d40e74fc90c0f3a25dbd642d dvdauthor-0.7.2.tar.gz
sha1 0e605642140576bfb3e963414d77630d1c073a51 dvdauthor-0.7.2.tar.gz
# Locally computed
sha256 3020a92de9f78eb36f48b6f22d5a001c47107826634a785a62dfcd080f612eb7 dvdauthor-0.7.2.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
+47
View File
@@ -0,0 +1,47 @@
################################################################################
#
# dvdauthor
#
################################################################################
DVDAUTHOR_VERSION = 0.7.2
DVDAUTHOR_SITE = https://sourceforge.net/projects/dvdauthor/files
DVDAUTHOR_DEPENDENCIES = host-pkgconf libxml2 freetype libpng
DVDAUTHOR_LICENSE = GPL-2.0+
DVDAUTHOR_LICENSE_FILES = COPYING
DVDAUTHOR_CONF_ENV = \
ac_cv_prog_FREETYPECONFIG=$(STAGING_DIR)/usr/bin/freetype-config \
ac_cv_path_XML2_CONFIG=$(STAGING_DIR)/usr/bin/xml2-config \
ac_cv_prog_GMAGICKCONFIG=
ifeq ($(BR2_PACKAGE_IMAGEMAGICK),y)
DVDAUTHOR_DEPENDENCIES += imagemagick
DVDAUTHOR_CONF_ENV += \
ac_cv_prog_MAGICKCONFIG=$(STAGING_DIR)/usr/bin/Magick-config
else
DVDAUTHOR_CONF_ENV += \
ac_cv_prog_MAGICKCONFIG=
endif
# Automatically detected by dvdauthor configure script, no way to
# disable.
ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
DVDAUTHOR_DEPENDENCIES += fontconfig
endif
ifeq ($(BR2_PACKAGE_LIBFRIBIDI),y)
DVDAUTHOR_DEPENDENCIES += libfribidi
endif
ifeq ($(BR2_PACKAGE_DVDAUTHOR_DVDUNAUTHOR),y)
DVDAUTHOR_DEPENDENCIES += libdvdread
# dvdauthor configure does not use pkg-config to detect libdvdread
ifeq ($(BR2_PACKAGE_LIBDVDCSS)$(BR2_STATIC_LIBS),yy)
DVDAUTHOR_CONF_ENV += LIBS="-ldvdcss"
endif
DVDAUTHOR_CONF_OPTS += --enable-dvdunauthor
else
DVDAUTHOR_CONF_OPTS += --disable-dvdunauthor
endif
$(eval $(autotools-package))