summaryrefslogtreecommitdiff
path: root/pre-inst-env.in
blob: 71e6fdd9d30f445160cc30a09bdf186dcfeff5dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!@SHELL@

# disfluid, implementation of the Solid specification
# Copyright (C) 2020, 2021  Vivien Kraus

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

abs_top_srcdir="$(cd "@abs_top_srcdir@" > /dev/null; pwd)"
abs_top_builddir="$(cd "@abs_top_builddir@" > /dev/null; pwd)"

export GUILE_LOAD_COMPILED_PATH="$abs_top_builddir${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"
export GUILE_LOAD_PATH="$abs_top_builddir:$abs_top_srcdir${GUILE_LOAD_PATH:+:}:$GUILE_LOAD_PATH"
export "XDG_DATA_HOME=$abs_top_builddir/xdg-data-home"
export "XDG_CACHE_HOME=$abs_top_builddir/xdg-cache-home"
export "XDG_DATA_DIRS=$abs_top_builddir/xdg-extra-data-dir:$XDG_DATA_DIRS"
mkdir -p "$XDG_DATA_HOME"
mkdir -p "$XDG_CACHE_HOME"
export GUILE_LOAD_COMPILED_PATH="$abs_top_builddir/src/pre-inst:$abs_top_builddir/src/scm:$GUILE_LOAD_COMPILED_PATH"
export GUILE_LOAD_PATH="$abs_top_builddir/src/pre-inst:$abs_top_builddir/src/scm:$abs_top_srcdir/src/scm:$GUILE_LOAD_PATH"
export GUILE_AUTO_COMPILE=0
exec "$@"