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
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_OPUS_TOOLS
bool "opus-tools"
select BR2_PACKAGE_LIBOGG
select BR2_PACKAGE_LIBOPUSENC
select BR2_PACKAGE_OPUS
select BR2_PACKAGE_OPUSFILE
help
Opus codec command line tools. This package provides the
reference implementations of encoder and decoder utilities
for libopus.
http://opus-codec.org
+5
View File
@@ -0,0 +1,5 @@
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt
sha256 b4e56cb00d3e509acfba9a9b627ffd8273b876b4e2408642259f6da28fa0ff86 opus-tools-0.2.tar.gz
# Hash for license file
sha256 c28016e58544119d6b93aea28297d040f17dcef7a9f548d3e6a4d0b558c5d248 COPYING
+30
View File
@@ -0,0 +1,30 @@
################################################################################
#
# opus-tools
#
################################################################################
OPUS_TOOLS_VERSION = 0.2
OPUS_TOOLS_SITE = https://downloads.xiph.org/releases/opus
OPUS_TOOLS_LICENSE = BSD-2-Clause, GPL-2.0 (opusinfo)
OPUS_TOOLS_LICENSE_FILES = COPYING
OPUS_TOOLS_CONF_OPTS = --disable-oggtest --disable-opustest
OPUS_TOOLS_DEPENDENCIES = libogg libopusenc opus opusfile host-pkgconf
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
OPUS_TOOLS_DEPENDENCIES += libpcap
endif
ifeq ($(BR2_X86_CPU_HAS_SSE),y)
OPUS_TOOLS_CONF_OPTS += --enable-sse
else
OPUS_TOOLS_CONF_OPTS += --disable-sse
endif
ifeq ($(BR2_PACKAGE_FLAC),y)
OPUS_TOOLS_DEPENDENCIES += flac
else
OPUS_TOOLS_CONF_OPTS += --without-flac
endif
$(eval $(autotools-package))