Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -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

View File

@@ -0,0 +1,2 @@
# From http://downloads.xiph.org/releases/opus/SHA256SUMS.txt
sha256 f75fb500e40b122775ac1a71ad80c4477698842a8fe9da4a1b4a1a9f16e4e979 opusfile-0.9.tar.gz

View File

@@ -0,0 +1,25 @@
################################################################################
#
# opusfile
#
################################################################################
OPUSFILE_VERSION = 0.9
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_LIBOPENSSL),y)
OPUSFILE_DEPENDENCIES += libopenssl
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))