diff options
author | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-06 21:45:34 +0000 |
---|---|---|
committer | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-06 21:45:34 +0000 |
commit | ebd593571b8962af5c6025ba666ca5a474087bb1 (patch) | |
tree | 5f0c63d360a1e932756f050baed942c4a36ee39f /scripts/02_configure_tarball.sh | |
parent | fix appimage build (diff) | |
parent | temporarily disable custom config/patches during build (diff) | |
download | librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.gz librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.bz2 librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.zip |
Merge branch 'arch_based_ci' into 'master'
CI/build script rewrite
See merge request librewolf-community/browser/linux!7
Diffstat (limited to 'scripts/02_configure_tarball.sh')
-rwxr-xr-x | scripts/02_configure_tarball.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/02_configure_tarball.sh b/scripts/02_configure_tarball.sh new file mode 100755 index 0000000..8657375 --- /dev/null +++ b/scripts/02_configure_tarball.sh @@ -0,0 +1,35 @@ +#!/bin/bash +set -e + +printf "\n\n---------------- prepare package for other distros ----------------\n" + +# Setup Script Variables + +# use $CI_PROJECT_DIR unless not in CI, then assign script path +CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)} +OUTPUT_TARBALL=$CI_PROJECT_DIR/LibreWolf.${CARCH}.tar.bz2 +SOURCE_CODE_BINARY_TARBALL_LOCATION="$CI_PROJECT_DIR/src/firefox-*/obj*/dist/librewolf*.tar.bz2" +EXTRACTED_TARBALL_FOLDER=$CI_PROJECT_DIR/librewolf_unpacked/librewolf + +# Prevents build from breaking in CI/CD environments +export SHELL=/bin/bash + +# Moves the packaged tarball to the specified location +printf "\nMoving Binary Tarball to output location\n" +mv $SOURCE_CODE_BINARY_TARBALL_LOCATION $OUTPUT_TARBALL + +# Extracts the binary tarball +printf "\nExtracting librewolf binary tarball\n" +mkdir librewolf_unpacked +tar -xf $OUTPUT_TARBALL -C librewolf_unpacked + +# Adds the librefox config files to the packaged tarball +printf "\nCopying librewolf settings to extracted binary tarball\n" + +cp -r $CI_PROJECT_DIR/src/settings $EXTRACTED_TARBALL_FOLDER/settings +cp $CI_PROJECT_DIR/content/toggle-settings.sh $EXTRACTED_TARBALL_FOLDER/settings +cp $CI_PROJECT_DIR/content/launch_librewolf.sh $EXTRACTED_TARBALL_FOLDER/launch_librewolf.sh + +# Repacks the binary tarball +printf "\nRecompressing binary tarball\n" +tar -jvcf $OUTPUT_TARBALL -C $EXTRACTED_TARBALL_FOLDER . |