pre-inst-env.in 1.3 KB

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