initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_OPUSFILE
|
||||
bool "opusfile"
|
||||
select BR2_PACKAGE_LIBOGG
|
||||
select BR2_PACKAGE_OPUS
|
||||
help
|
||||
A convenient high-level API for decoding and basic
|
||||
manipulation of all Ogg Opus audio streams.
|
||||
|
||||
http://opus-codec.org
|
||||
@@ -0,0 +1,5 @@
|
||||
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt
|
||||
sha256 118d8601c12dd6a44f52423e68ca9083cc9f2bfe72da7a8c1acb22a80ae3550b opusfile-0.12.tar.gz
|
||||
|
||||
# Hash for license file
|
||||
sha256 0267ae795ab744c4e0f9c45e249440fdf2e75dac8c804f36066b28649bf74aaf COPYING
|
||||
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# opusfile
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPUSFILE_VERSION = 0.12
|
||||
OPUSFILE_SITE = https://downloads.xiph.org/releases/opus
|
||||
OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
|
||||
OPUSFILE_LICENSE = BSD-3-Clause
|
||||
OPUSFILE_LICENSE_FILES = COPYING
|
||||
OPUSFILE_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
OPUSFILE_DEPENDENCIES += openssl
|
||||
else
|
||||
OPUSFILE_CONF_OPTS += --disable-http
|
||||
endif
|
||||
|
||||
# Use the same as opus package since it's a dep and we can't mix
|
||||
ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y)
|
||||
OPUSFILE_CONF_OPTS += --enable-fixed-point
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user