~dhananjaysathe/nuvola-player/TelepathyExt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# This is a wrapper that expands $XDG_DATA_DIRS
# and then runs Nuvola Player from build dir.
# Please use it only if you want to run Nuvola
# Player from source directory without
# installation (e.g. you want to run development
# version).

if [ -z "$XDG_DATA_DIRS" ]; then
  XDG_DATA_DIRS="/usr/local/share:/usr/share"
fi


export XDG_DATA_DIRS="./data:./build/data:$XDG_DATA_DIRS"
export LD_LIBRARY_PATH=./build
exec ./build/nuvolaplayer "$@"