first commit

This commit is contained in:
Chris Cochrun 2022-02-04 06:47:15 -06:00
commit 9c73c8c567
89 changed files with 6355 additions and 0 deletions

22
build/prefix.sh.fish Normal file
View file

@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: 2021 Alexander Lohnau <alexander.lohnau@gmx.de>
# SPDX-License-Identifier: BSD-3-Clause
set PATH "/usr/bin:$PATH"
# LD_LIBRARY_PATH only needed if you are building without rpath
# set -x LD_LIBRARY_PATH "/usr/lib:$LD_LIBRARY_PATH"
if test -z "$XDG_DATA_DIRS"
set -x --path XDG_DATA_DIRS /usr/local/share/ /usr/share/
end
set -x --path XDG_DATA_DIRS "/usr/share" $XDG_DATA_DIRS
if test -z "$XDG_CONFIG_DIRS"
set -x --path XDG_CONFIG_DIRS /etc/xdg
end
set -x --path XDG_CONFIG_DIRS "/etc/xdg" $XDG_CONFIG_DIRS
set -x --path QT_PLUGIN_PATH "/usr/lib/qt/plugins" $QT_PLUGIN_PATH
set -x --path QML2_IMPORT_PATH "/usr/lib/qt/qml" $QML2_IMPORT_PATH
set -x --path QT_QUICK_CONTROLS_STYLE_PATH "/usr/lib/qt/qml/QtQuick/Controls.2/" $QT_QUICK_CONTROLS_STYLE_PATH