source: roaraudio/tools/configure-players @ 5889:d866fb1213d6

Last change on this file since 5889:d866fb1213d6 was 158:6b21912c547d, checked in by phi, 16 years ago

added tool configure-players

  • Property exe set to *
File size: 404 bytes
Line 
1#!/bin/sh
2
3GLOBAL=false
4HAVE_LIBAO=false
5PLAYERS='libao mplayer xmms gxine wine'
6BASEDIR=.
7
8player_libao () {
9:
10}
11
12player_mplayer () {
13:
14}
15
16player_xmms () {
17:
18}
19
20player_gxine () {
21:
22}
23
24player_wine () {
25 if regedit wine.reg
26 then
27  echo -n 'OK'
28 else
29  echo -n 'Error'
30 fi
31}
32
33cd $BASEDIR || exit 1
34
35for player in $PLAYERS
36do
37 echo -n "configuring $player... "
38 player_$player 2> /dev/null
39 echo
40done
41
42#ll
Note: See TracBrowser for help on using the repository browser.