From d58d138a682ecd2727f33af12e97b3142fcf4d57 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sat, 25 Mar 2023 22:03:14 -0700 Subject: [PATCH] mac: trim deps, unpin hacked up gst libs --- docker/install-scrypted-dependencies-mac.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/docker/install-scrypted-dependencies-mac.sh b/docker/install-scrypted-dependencies-mac.sh index fa2a04c74..f425490b4 100755 --- a/docker/install-scrypted-dependencies-mac.sh +++ b/docker/install-scrypted-dependencies-mac.sh @@ -45,12 +45,22 @@ RUN brew install libvips # dlib RUN brew install cmake # gstreamer plugins -RUN_IGNORE brew install gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly +RUN_IGNORE brew install gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad # gst python bindings RUN_IGNORE brew install gst-python -# python image library -# todo: consider removing this -RUN_IGNORE brew install pillow + +### HACK WORKAROUND +### https://github.com/koush/scrypted/issues/544 + +brew unpin gstreamer +brew unpin gst-python +brew unpin gst-plugins-ugly +brew unpin gst-plugins-good +brew unpin gst-plugins-base +brew unpin gst-plugins-bad +brew unpin gst-libav + +### END HACK WORKAROUND ARCH=$(arch) if [ "$ARCH" = "arm64" ]