~dhananjaysathe/nuvola-player/TelepathyExt

384 by Jiří Janoušek
Added nuvolaplayer.wrapper that expands /usr/share/gnome-classic:/usr/share/gnome:/usr/local/share/:/usr/share/ and then runs Nuvola Player from build dir.
1
#!/bin/sh
2
3
# This is a wrapper that expands $XDG_DATA_DIRS
4
# and then runs Nuvola Player from build dir.
5
# Please use it only if you want to run Nuvola
6
# Player from source directory without
7
# installation (e.g. you want to run development
8
# version).
9
596 by Jiří Janoušek
Fixed nuvolaplayer.wrapper script.
10
if [ -z "$XDG_DATA_DIRS" ]; then
11
  XDG_DATA_DIRS="/usr/local/share:/usr/share"
12
fi
13
14
15
export XDG_DATA_DIRS="./data:./build/data:$XDG_DATA_DIRS"
609 by Jiří Janoušek
Set LD_LIBRARY_PATH in nuvolaplayer.wrapper
16
export LD_LIBRARY_PATH=./build
384 by Jiří Janoušek
Added nuvolaplayer.wrapper that expands /usr/share/gnome-classic:/usr/share/gnome:/usr/local/share/:/usr/share/ and then runs Nuvola Player from build dir.
17
exec ./build/nuvolaplayer "$@"