mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 06:56:19 +00:00
eeab3d92b4
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
36 lines
1.0 KiB
Makefile
36 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="libmad"
|
|
PKG_VERSION="0.15.1b"
|
|
PKG_SHA256="bbfac3ed6bfbc2823d3775ebb931087371e142bb0e9bb1bee51a76a6e0078690"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.mars.org/home/rob/proj/mpeg/"
|
|
PKG_URL="${SOURCEFORGE_SRC}/mad/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A high-quality MPEG audio decoder."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
# package specific configure options
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-shared"
|
|
if [ "${TARGET_ARCH}" = "x86_64" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET+=" --enable-accuracy --enable-fpm=64bit"
|
|
fi
|
|
|
|
post_makeinstall_target() {
|
|
mkdir -p ${SYSROOT_PREFIX}/usr/lib/pkgconfig
|
|
cat > ${SYSROOT_PREFIX}/usr/lib/pkgconfig/mad.pc << "EOF"
|
|
prefix=/usr
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: mad
|
|
Description: MPEG audio decoder
|
|
Requires:
|
|
Version: 0.15.1b
|
|
Libs: -L${libdir} -lmad
|
|
Cflags: -I${includedir}
|
|
EOF
|
|
}
|