82f8e06604
Update to LibreELEC 10.0.4
23 lines
807 B
Makefile
23 lines
807 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="mpg123"
|
|
PKG_VERSION="1.30.2"
|
|
PKG_SHA256="c7ea863756bb79daed7cba2942ad3b267a410f26d2dfbd9aaf84451ff28a05d7"
|
|
PKG_LICENSE="LGPLv2"
|
|
PKG_SITE="http://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
|