You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: linuxdeploy-plugin-gstreamer.sh
+42-8
Original file line number
Diff line number
Diff line change
@@ -14,11 +14,14 @@ show_usage() {
14
14
echo
15
15
echo"Bundles GStreamer plugins into an AppDir"
16
16
echo
17
-
echo"Variables:"
18
-
echo" GSTREAMER_INCLUDE_BAD_PLUGINS=\"1\" (optional; default: disabled; set to empty string or unset to disable)"
19
-
echo" GSTREAMER_PLUGINS_DIR=\"...\" (optional; directory containing GStreamer plugins; default: guessed based on main distro architecture)"
20
-
echo" GSTREAMER_HELPERS_DIR=\"...\" (optional; directory containing GStreamer helper tools like gst-plugin-scanner; default: guessed based on main distro architecture)"
echo" LINUXDEPLOY=\".../linuxdeploy\" path to linuxdeploy (e.g., AppImage); set automatically when plugin is run directly by linuxdeploy"
19
+
echo
20
+
echo"Optional variables:"
21
+
echo" GSTREAMER_INCLUDE_BAD_PLUGINS=\"1\" (default: disabled; set to empty string or unset to disable)"
22
+
echo" GSTREAMER_PLUGINS_DIR=\"...\" (directory containing GStreamer plugins; default: guessed based on main distro architecture)"
23
+
echo" GSTREAMER_HELPERS_DIR=\"...\" (directory containing GStreamer helper tools like gst-plugin-scanner; default: guessed based on main distro architecture)"
24
+
echo" GSTREAMER_VERSION=\"1.0\" (default: 1.0)"
22
25
}
23
26
24
27
while [ "$1"!="" ];do
@@ -50,9 +53,23 @@ if [ "$APPDIR" == "" ]; then
50
53
exit 1
51
54
fi
52
55
56
+
if! which patchelf &>/dev/null &&!type patchelf &>/dev/null;then
0 commit comments