From 2eb3de53ab79d8972c7e1a84d5e6ef3d774ae859 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 1 May 2025 14:25:47 -0600 Subject: [PATCH] Remove gstreamer-plugins-good as it comes from gstreamer --- .../libs/gstreamer-plugins-good/recipe.toml | 66 ------------------- 1 file changed, 66 deletions(-) delete mode 100644 recipes/libs/gstreamer-plugins-good/recipe.toml diff --git a/recipes/libs/gstreamer-plugins-good/recipe.toml b/recipes/libs/gstreamer-plugins-good/recipe.toml deleted file mode 100644 index 87e47b8b..00000000 --- a/recipes/libs/gstreamer-plugins-good/recipe.toml +++ /dev/null @@ -1,66 +0,0 @@ -[source] -tar = "https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.20.6.tar.xz" -blake3 = "2ae9d13fffb56e3c0f2cf4003453ab787b54e7cf773c80ba1fcbf36ac7d68124" -patches = [] - -[build] -template = "custom" -dependencies = [ - "gettext", - "glib", - "gstreamer", - "gstreamer-plugins-base", - "libffi", - "libiconv", - "pcre", - "zlib" -] -script = """ -export GLIB_GENMARSHAL="$(which glib-genmarshal)" -export GLIB_MKENUMS="$(which glib-mkenums)" -export LDFLAGS="-static" - -# TODO: Fix this annoying shite -echo "[binaries]" > cross_file.txt -echo "c = '${CC}'" >> cross_file.txt -echo "cpp = '${CXX}'" >> cross_file.txt -echo "ar = '${AR}'" >> cross_file.txt -echo "strip = '${STRIP}'" >> cross_file.txt -echo "pkgconfig = '${TARGET}-pkg-config'" >> cross_file.txt - -echo "[host_machine]" >> cross_file.txt -echo "system = 'redox'" >> cross_file.txt -echo "cpu_family = '$(echo "${TARGET}" | cut -d - -f1)'" >> cross_file.txt -echo "cpu = '$(echo "${TARGET}" | cut -d - -f1)'" >> cross_file.txt -echo "endian = 'little'" >> cross_file.txt - -echo "[paths]" >> cross_file.txt -echo "prefix = '${COOKBOOK_SYSROOT}'" >> cross_file.txt -echo "libdir = 'lib'" >> cross_file.txt -echo "bindir = 'bin'" >> cross_file.txt - -unset AR -unset AS -unset CC -unset CXX -unset LD -unset NM -unset OBJCOPY -unset OBJDUMP -unset PKG_CONFIG -unset RANLIB -unset READELF -unset STRIP - -meson setup "${COOKBOOK_SOURCE}" _build \ - --cross-file cross_file.txt \ - --buildtype release \ - --strip \ - -Ddefault_library=static \ - -Dprefix=/ \ - -Dlibdir=lib \ - -Dexamples=disabled \ - -Dtests=disabled -ninja -C _build -v -DESTDIR="${COOKBOOK_STAGE}" ninja -C _build -v install -"""