blob: 82deeae31e63d1e31f31ba6f501f616a3a66c0ad (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
#
## A simple wrapper to make masterpdfeditor use the bundled qt6 libraries!
#
#-- Set library paths
export QT_PLUGIN_PATH=/opt/masterpdfeditor/lib/qt6/plugins
export LD_LIBRARY_PATH=/opt/masterpdfeditor/lib:$LD_LIBRARY_PATH
#-- Run program
exec /opt/masterpdfeditor/masterpdfeditor5 "$@"
|