GUIScript: Make Setup*Icons functions take a dict to get the callbacks from.
[gemrb.git] / admin / toggle_music.sh
blobb5d2dc9c7b42fe0d75e0ca0273d5df9b57f18e16
1 #!/bin/bash
2 # GemRB - Infinity Engine Emulator
3 # Copyright (C) 2009 The GemRB Project
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 # only works for autotools builds
21 # see gemrb/plugins-prepare.sh
23 if [[ ! -d gemrb/plugins ]]; then
24 echo You must call me from the top gemrb dir!
25 exit 1
28 if [[ $1 == on ]]; then
29 ln -sf "$PWD"/gemrb/plugins/OpenALAudio/.libs/libOpenALAudio.so "$PWD"/gemrb/plugins/libOpenALAudio.so
30 rm -f "$PWD"/gemrb/plugins/libNullSound.so
31 elif [[ $1 == off ]]; then
32 ln -sf "$PWD"/gemrb/plugins/NullSound/.libs/libNullSound.so "$PWD"/gemrb/plugins/libNullSound.so
33 rm -f "$PWD"/gemrb/plugins/libOpenALAudio.so
34 else
35 echo Missing or bad parameter!
36 echo USAGE: $0 on\|off
37 exit 2