mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 09:16:19 +00:00
5e4599be53
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
29 lines
1.0 KiB
Makefile
29 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="media_tree_cc"
|
|
PKG_VERSION="2021-02-16"
|
|
PKG_SHA256="a4bc981015d48fda009f5588c001dbce6f67e11055efc7e58d3abceef95188fd"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/crazycat69/linux_media"
|
|
PKG_URL="${DISTRO_SRC}/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_NEED_UNPACK="${LINUX_DEPENDS}"
|
|
PKG_LONGDESC="Source of Linux Kernel media_tree subsystem to build with media_build."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
unpack() {
|
|
mkdir -p ${PKG_BUILD}/
|
|
tar -xf ${SOURCES}/${PKG_NAME}/${PKG_NAME}-${PKG_VERSION}.tar.bz2 -C ${PKG_BUILD}/
|
|
}
|
|
|
|
post_unpack() {
|
|
# hack/workaround for borked upstream kernel/media_build
|
|
# without removing atomisp there a lot additional includes that
|
|
# slowdown build process after modpost from 3min to 6min
|
|
# even if atomisp is disabled via kernel.conf
|
|
rm -rf ${PKG_BUILD}/drivers/staging/media/atomisp
|
|
sed -i 's|^.*drivers/staging/media/atomisp.*$||' \
|
|
${PKG_BUILD}/drivers/staging/media/Kconfig
|
|
}
|