forked from pool/boinc-client
Jan Engelhardt
649e877560
Second try for an update. The compiler errors have now been properly fixed. The main advantage of the new version is that it recognizes GPUs running on Mesa, so people can now use open source drivers with BOINC. The main disadvantage is that this doesn't compile any longer on older distros because of the new wxWidgets 3 needed to build. OBS-URL: https://build.opensuse.org/request/show/391382 OBS-URL: https://build.opensuse.org/package/show/network/boinc-client?expand=0&rev=47
11 lines
216 B
Bash
11 lines
216 B
Bash
#!/bin/sh
|
|
#
|
|
# boinc-manager - a wrapper to start BOINC Client GUI
|
|
#
|
|
# Checking for gui_rpc_auth.cfg
|
|
if ! test -f ~/gui_rpc_auth.cfg ; then
|
|
ln -s @boinc_dir@/gui_rpc_auth.cfg ~/.
|
|
fi
|
|
|
|
exec boinc-gui -d @boinc_dir@
|