Last active
March 25, 2025 16:24
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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
Thank you so much, was looking for this for so long.