Example script when packaging folders with executables

This commit is contained in:
q3aql 2024-07-09 14:59:30 +02:00
parent a77ab0e174
commit a598ce35cc

6
apprun-script-example.txt Executable file
View File

@ -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 "$@"