Skip to content

Instantly share code, notes, and snippets.

@gilbertfrancois
Last active February 8, 2024 12:20
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilbertfrancois/d8de118eb1bcd953ebc6fc9290a4f572 to your computer and use it in GitHub Desktop.
Save gilbertfrancois/d8de118eb1bcd953ebc6fc9290a4f572 to your computer and use it in GitHub Desktop.
Uninstaller for GStreamer on macOS, where GStreamer is installed as framework from the official pkg distribution.
#!/usr/bin/env bash
# Author: Gilbert Francois Duivesteijn
# Date: Febr 2023
# Platform: macOS
# License: Apache
# Discard receipt data for the installed GStreamer packages.
pkgutil --pkgs | grep gstreamer | xargs -I % sudo pkgutil --forget %
# Remove the GStreamer Framework from disk
sudo rm -rf /Library/Frameworks/GStreamer.framework
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment