From a598ce35cc6a1b6efd009bd1277ed0dda6e399e2 Mon Sep 17 00:00:00 2001 From: q3aql Date: Tue, 9 Jul 2024 14:59:30 +0200 Subject: [PATCH] Example script when packaging folders with executables --- apprun-script-example.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 apprun-script-example.txt diff --git a/apprun-script-example.txt b/apprun-script-example.txt new file mode 100755 index 0000000..337b2fa --- /dev/null +++ b/apprun-script-example.txt @@ -0,0 +1,6 @@ +#!/usr/bin/env sh + +# Example script when packaging folders with executables +# In this case the binary "ffmpeg" is executed. + +$(dirname $0)/ld-linux-x86-64.so.2 --library-path $(dirname $0) $(dirname $0)/ffmpeg "$@"