mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 02:36:17 +00:00
28 lines
884 B
Makefile
28 lines
884 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="faad2"
|
|
PKG_VERSION="2.10.1"
|
|
PKG_SHA256="4c16c71295ca0cbf7c3dfe98eb11d8fa8d0ac3042e41604cfd6cc11a408cf264"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/knik0/faad2/"
|
|
PKG_URL="https://github.com/knik0/faad2/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="An MPEG-4 AAC decoder."
|
|
PKG_TOOLCHAIN="configure"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-static \
|
|
--disable-shared \
|
|
--without-drm \
|
|
--with-gnu-ld \
|
|
--without-mpeg4ip \
|
|
--without-xmms"
|
|
pre_configure_target() {
|
|
./bootstrap
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}/usr/bin
|
|
}
|