mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 06:46:19 +00:00
47c07c60ba
* Latest 4.3 changes poorly merged * Build fixes * Squash? * Fix ppsspp on switch * Fix video recording, add base stuff for nvv4l2 decoder/encoder, but leave disabled for now * Clean up left over files * Switch: Dont build xpadneo driver, but install configs * FFMpeg: Add back L4T decoder Patches
69 lines
2.8 KiB
Makefile
69 lines
2.8 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="gst-plugins-base"
|
|
PKG_VERSION="1.22.3"
|
|
PKG_SHA256="1c596289a0d4207380233eba8c36a932c4d1aceba19932937d9b57c24cef89f3"
|
|
PKG_LICENSE="GPL-2.1-or-later"
|
|
PKG_SITE="https://gstreamer.freedesktop.org/modules/gst-plugins-base.html"
|
|
PKG_URL="https://gstreamer.freedesktop.org/src/gst-plugins-base/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain gstreamer"
|
|
PKG_LONGDESC="Base GStreamer plugins and helper libraries"
|
|
PKG_BUILD_FLAGS="-gold"
|
|
|
|
pre_configure_target() {
|
|
PKG_MESON_OPTS_TARGET="-Dgl=disabled \
|
|
-Dadder=disabled \
|
|
-Dapp=disabled \
|
|
-Daudioconvert=disabled \
|
|
-Daudiomixer=disabled \
|
|
-Daudiorate=disabled \
|
|
-Daudioresample=disabled \
|
|
-Daudiotestsrc=disabled \
|
|
-Dcompositor=disabled \
|
|
-Dencoding=disabled \
|
|
-Dgio=disabled \
|
|
-Dgio-typefinder=disabled \
|
|
-Doverlaycomposition=disabled \
|
|
-Dpbtypes=disabled \
|
|
-Dplayback=disabled \
|
|
-Drawparse=enabled \
|
|
-Dsubparse=enabled \
|
|
-Dtcp=disabled \
|
|
-Dtypefind=disabled \
|
|
-Dvideoconvertscale=disabled \
|
|
-Dvideorate=disabled \
|
|
-Dvideotestsrc=disabled \
|
|
-Dvolume=disabled \
|
|
-Dalsa=disabled \
|
|
-Dcdparanoia=disabled \
|
|
-Dlibvisual=disabled \
|
|
-Dogg=disabled \
|
|
-Dopus=disabled \
|
|
-Dpango=disabled \
|
|
-Dtheora=disabled \
|
|
-Dtremor=disabled \
|
|
-Dvorbis=disabled \
|
|
-Dx11=disabled \
|
|
-Dxshm=disabled \
|
|
-Dxi=disabled \
|
|
-Dxvideo=disabled \
|
|
-Dexamples=disabled \
|
|
-Dtests=disabled \
|
|
-Dtools=disabled \
|
|
-Dintrospection=disabled \
|
|
-Dnls=disabled \
|
|
-Dorc=disabled \
|
|
-Dgobject-cast-checks=disabled \
|
|
-Dglib-asserts=disabled \
|
|
-Dglib-checks=disabled \
|
|
-Dpackage-name=gst-plugins-base \
|
|
-Dpackage-origin=LibreELEC.tv \
|
|
-Ddoc=disabled"
|
|
}
|
|
|
|
post_makeinstall_target() {
|
|
# clean up
|
|
safe_remove ${INSTALL}
|
|
}
|