* renamed scripts * moved install, uninstall, deleteConfig scripts to top-level * fixed desktop file not recognized on installation, only on restart * removed Eula accept from install script * abort install and uninstall when not running as root * revised README
10 lines
348 B
Bash
Executable File
10 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p setup/Linux/lib
|
|
ldd bin/app/Release/Sourcetrail | grep "=> /" | awk '{print $3}' | xargs -I '{}' cp -v '{}' setup/Linux/lib
|
|
|
|
# extra files needed and not copied with the lines above
|
|
cp /usr/lib/qt/plugins/platforms/libqxcb.so setup/Linux
|
|
cp /usr/lib/libQt5XcbQpa.so.5 setup/Linux/lib
|
|
cp /usr/lib/libQt5DBus.so.5 setup/Linux/lib
|