Fix #18: missing Gstreamer issue (#19)

This commit is contained in:
Naman Garg
2024-03-02 03:42:17 +05:30
committed by GitHub
parent 12e0e983f9
commit 2a2e67491c

View File

@@ -76,8 +76,10 @@ helpers_target_dir="$APPDIR"/usr/lib/gstreamer"$GSTREAMER_VERSION"/gstreamer-"$G
if [ "$GSTREAMER_PLUGINS_DIR" != "" ]; then if [ "$GSTREAMER_PLUGINS_DIR" != "" ]; then
plugins_dir="${GSTREAMER_PLUGINS_DIR}" plugins_dir="${GSTREAMER_PLUGINS_DIR}"
else elif [ -d /usr/lib/"$(uname -m)"-linux-gnu/gstreamer-"$GSTREAMER_VERSION" ]; then
plugins_dir=/usr/lib/$(uname -m)-linux-gnu/gstreamer-"$GSTREAMER_VERSION" plugins_dir=/usr/lib/$(uname -m)-linux-gnu/gstreamer-"$GSTREAMER_VERSION"
else
plugins_dir=/usr/lib/gstreamer-"$GSTREAMER_VERSION"
fi fi
if [ "$GSTREAMER_HELPERS_DIR" != "" ]; then if [ "$GSTREAMER_HELPERS_DIR" != "" ]; then