add bricabrac and goblin-hq
[mudsync.git] / pre-inst-env.in
1 #!/bin/sh
2
3 # srt2vtt --- SRT to WebVTT converter
4 # Copyright © 2015 David Thompson <davet@gnu.org>
5 # Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
6 #
7 # srt2vtt is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # srt2vtt is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with srt2vtt.  If not, see <http://www.gnu.org/licenses/>.
19
20 abs_top_srcdir="`cd "@abs_top_srcdir@" > /dev/null; pwd`"
21 abs_top_builddir="`cd "@abs_top_builddir@" > /dev/null; pwd`"
22
23 GUILE_LOAD_COMPILED_PATH="$abs_top_builddir${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"
24 GUILE_LOAD_PATH="$abs_top_builddir:$abs_top_srcdir${GUILE_LOAD_PATH:+:}:$GUILE_LOAD_PATH"
25 export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH
26
27 PATH="$abs_top_builddir/scripts:$PATH"
28 export PATH
29
30 exec "$@"