mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 06:56:19 +00:00
4099f48153
Signed-off-by: Demetris Ierokipides <ierokipides.dem@gmail.com>
30 lines
1004 B
Makefile
30 lines
1004 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="opus"
|
|
PKG_VERSION="1.4"
|
|
PKG_SHA256="c9b32b4253be5ae63d1ff16eea06b94b5f0f2951b7a02aceef58e3a3ce49c51f"
|
|
PKG_LICENSE="BSD"
|
|
PKG_SITE="http://www.opus-codec.org"
|
|
PKG_URL="https://github.com/xiph/opus/releases/download/v${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Codec designed for interactive speech and audio transmission over the Internet."
|
|
PKG_TOOLCHAIN="configure"
|
|
PKG_BUILD_FLAGS="+pic"
|
|
|
|
if [ "${TARGET_ARCH}" = "arm" ]; then
|
|
PKG_FIXED_POINT="--enable-fixed-point"
|
|
else
|
|
PKG_FIXED_POINT="--disable-fixed-point"
|
|
fi
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static \
|
|
--disable-shared \
|
|
${PKG_FIXED_POINT}"
|
|
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-static \
|
|
--enable-shared \
|
|
${PKG_FIXED_POINT}"
|
|
fi
|