mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 13:56:19 +00:00
23 lines
808 B
Makefile
23 lines
808 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="mpg123"
|
|
PKG_VERSION="1.31.3"
|
|
PKG_SHA256="1ca77d3a69a5ff845b7a0536f783fee554e1041139a6b978f6afe14f5814ad1a"
|
|
PKG_LICENSE="LGPLv2"
|
|
PKG_SITE="https://www.mpg123.org/"
|
|
PKG_URL="https://downloads.sourceforge.net/sourceforge/mpg123/mpg123-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain alsa-lib"
|
|
PKG_LONGDESC="A console based real time MPEG Audio Player for Layer 1, 2 and 3."
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-shared \
|
|
--enable-static"
|
|
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-shared \
|
|
--with-pic \
|
|
--disable-static"
|
|
PKG_BUILD_FLAGS="+pic"
|
|
fi
|