summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.conf
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-03-12 00:03:06 +0000
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-03-12 00:03:06 +0000
commit3a9f2e9aa05f77d282fc752d8a64fab16232fbb6 (patch)
tree523788d330f8cb09c3b7d2636487eab002bd09c8 /scripts/prep-librewolf-dpkg.conf
parentremove reference to obsolete patch (diff)
parentattempt to handle choosable distro, starting with ubuntu (diff)
downloadlibrewolf-debian-3a9f2e9aa05f77d282fc752d8a64fab16232fbb6.tar.gz
librewolf-debian-3a9f2e9aa05f77d282fc752d8a64fab16232fbb6.tar.bz2
librewolf-debian-3a9f2e9aa05f77d282fc752d8a64fab16232fbb6.zip
Merge branch 'ubuntu2004' into 'master'
attempt to handle choosable distro, starting with ubuntu See merge request librewolf-community/browser/debian!2
Diffstat (limited to 'scripts/prep-librewolf-dpkg.conf')
-rw-r--r--scripts/prep-librewolf-dpkg.conf8
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/prep-librewolf-dpkg.conf b/scripts/prep-librewolf-dpkg.conf
index dc504d3..318af35 100644
--- a/scripts/prep-librewolf-dpkg.conf
+++ b/scripts/prep-librewolf-dpkg.conf
@@ -1,8 +1,12 @@
# Config file for prep-librewolf-dpkg.sh
# Configure these settings before running that script.
-debian_firefox_version=${debian_firefox_version:-'86.0-1'} # current version of Firefox package in Debian sid
-firefox_version=${pkgver:-'86.0'} # current version of Firefox
+# Available options for DISTRO: ubuntu debian
+DISTRO=${DISTRO:-'debian'}
+# current version of Firefox package in target distro
+distro_firefox_version=${distro_firefox_version:-'86.0+build3-0ubuntu0.20.04.1'}
+# current version of Firefox, as defined by name of the orig tarball.
+firefox_version=${pkgver:-'86.0+build3'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
bgstack15