summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-rpm.conf
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/prep-librewolf-rpm.conf')
-rw-r--r--scripts/prep-librewolf-rpm.conf12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/prep-librewolf-rpm.conf b/scripts/prep-librewolf-rpm.conf
new file mode 100644
index 0000000..c4b42e4
--- /dev/null
+++ b/scripts/prep-librewolf-rpm.conf
@@ -0,0 +1,12 @@
+# Config file for prep-librewolf-rpm.sh
+# Configure these settings before running that script.
+
+# Available options for DISTRO: fedora
+DISTRO=${DISTRO:-'fedora'}
+# current version of Firefox package in target distro
+distro_firefox_release=${distro_firefox_release:-'6'}
+# current version of Firefox, as defined by name of the orig tarball.
+firefox_version=${firefox_version:-'88.0'}
+settings_commit=${settings_commit:-'master'}
+CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
+output_dir=${CI_PROJECT_DIR}/out
bgstack15