50b731f1b7
Derivative of Redox OS (https://www.redox-os.org) adding: - AMD GPU driver (amdgpu) via LinuxKPI compat layer - ext4 filesystem support (ext4d scheme daemon) - ACPI fixes for AMD bare metal (x2APIC, DMAR, IVRS, MCFG) - Custom branding (hostname, os-release, boot identity) Build system is full upstream Redox with RBOS overlay in local/. Patches for kernel, base, and relibc are symlinked from local/patches/ and protected from make clean/distclean. Custom recipes live in local/recipes/ with symlinks into the recipes/ search path. Build: make all CONFIG_NAME=redbear-full Sync: ./local/scripts/sync-upstream.sh
80 lines
1.5 KiB
TOML
80 lines
1.5 KiB
TOML
[source]
|
|
tar = "https://gitlab.freedesktop.org/gstreamer/gstreamer/-/archive/1.24.12/gstreamer-1.24.12.tar.gz"
|
|
blake3 = "181daf73050f7472ec656e7461b7f67028d6002c1133870576033a32e43a364f"
|
|
patches = ["redox.patch"]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"bzip2",
|
|
"cairo",
|
|
"curl",
|
|
"expat",
|
|
#TODO: "ffmpeg6",
|
|
"fontconfig",
|
|
"freetype2",
|
|
"fribidi",
|
|
"gdk-pixbuf",
|
|
"gettext",
|
|
"glib",
|
|
"harfbuzz",
|
|
"libass",
|
|
"libffi",
|
|
"libgmp",
|
|
"libiconv",
|
|
"libicu",
|
|
"libjpeg",
|
|
"libmodplug1",
|
|
"libnettle",
|
|
"libogg",
|
|
"libpng",
|
|
"libpsl",
|
|
"libpthread-stubs",
|
|
"libsndfile",
|
|
"libsoup",
|
|
"libvorbis",
|
|
"libwebp",
|
|
"libx11",
|
|
"libxau",
|
|
"libxcb",
|
|
#TODO: "libxdamage",
|
|
"libxext",
|
|
"libxfixes",
|
|
"libxi",
|
|
"libxml2",
|
|
"libxxf86vm",
|
|
"mesa-x11",
|
|
"nghttp2",
|
|
#TODO: "openal",
|
|
"openssl1",
|
|
"pango",
|
|
"pcre2",
|
|
"pixman",
|
|
"sqlite3",
|
|
"x11proto",
|
|
"xextproto",
|
|
"xz",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
export GLIB_GENMARSHAL="$(which glib-genmarshal)"
|
|
export GLIB_MKENUMS="$(which glib-mkenums)"
|
|
|
|
CFLAGS="${CFLAGS} -DM_LN2=0.69314718055994530942"
|
|
cookbook_meson \
|
|
-Ddevtools=disabled \
|
|
-Dexamples=disabled \
|
|
-Dlibav=disabled \
|
|
-Dlibnice=disabled \
|
|
-Dorc=disabled \
|
|
-Dtests=disabled \
|
|
-Dtools=enabled \
|
|
-Dgstreamer:check=disabled \
|
|
-Dgstreamer:coretracers=disabled \
|
|
-Dgst-plugins-bad:shm=disabled \
|
|
-Dgst-plugins-base:xshm=disabled \
|
|
-Dgst-plugins-good:ximagesrc-xshm=disabled
|
|
"""
|