Crude solution, but this way everything else remains "as is", so once we tackle the issues with the toggle-settings-script not working in all situations and re-introduce it, we can do easier switch to that instead. Fix (partial only) for #105.
32 lines
1.3 KiB
Bash
Executable file
32 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
printf "\n\n--------------------------------- SETTINGS INTEGRATION --------------------------------------\n";
|
|
|
|
# Setup Script Variables
|
|
BINARY_TARBALL=$1;
|
|
TOGGLE_SETTINGS_SCRIPT=$2;
|
|
LAUNCHER_SCRIPT=$3;
|
|
_SCRIPT_FOLDER=$(realpath $(dirname $0));
|
|
_EXTRACTED_TARBALL_FOLDER=$_SCRIPT_FOLDER/librewolf;
|
|
_SETTINGS_REPO='https://gitlab.com/librewolf-community/settings.git';
|
|
|
|
# Extracts the binary tarball
|
|
printf "\nExtracting librewolf binary tarball\n";
|
|
tar -xf $BINARY_TARBALL -C $_EXTRACTED_TARBALL_FOLDER/..;
|
|
|
|
# Adds the librefox config files to the packaged tarball
|
|
printf "\nCopying librewolf settings to extracted binary tarball\n";
|
|
|
|
git clone $_SETTINGS_REPO $_EXTRACTED_TARBALL_FOLDER/settings;
|
|
# no need to keep that in there
|
|
rm -rf "${_EXTRACTED_TARBALL_FOLDER}/settings/.git";
|
|
cp $TOGGLE_SETTINGS_SCRIPT $_EXTRACTED_TARBALL_FOLDER/settings;
|
|
cp $LAUNCHER_SCRIPT $_EXTRACTED_TARBALL_FOLDER/launch_librewolf.sh;
|
|
|
|
# Somewhat crude workaround to use settings per default
|
|
# until we've worked out how to use `--install-settings` with links
|
|
# in all major packages instead
|
|
cp $_EXTRACTED_TARBALL_FOLDER/settings/* $_EXTRACTED_TARBALL_FOLDER;
|
|
|
|
# Repacks the binary tarball
|
|
printf "\nRecompressing binary tarball\n";
|
|
tar -jvcf $BINARY_TARBALL -C $_EXTRACTED_TARBALL_FOLDER .;
|