summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index b578529..8240869 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# File: prep-librewolf-dpkg.sh
# Location: https://gitlab.com/bgstack15/librewolf-linux.git
-# Latest supported version: librewolf-84.0.2-2
+# Latest supported version: librewolf-85.0-1
# Author: bgstack15
# SPDX-License-Identifier: CC-BY-SA-4.0
# Startdate: 2020-11-29
@@ -251,6 +251,10 @@ cat "${new_changelog}" > "${debian_dir}"/changelog
rm -f "${new_changelog:-NOTHINGTODEL}"
+# remove dpkg-divert items which librewolf will not use
+# thankfully dpkg-divert is the only tasks in these files as of 85.0
+rm -f "${debian_dir}"/browser.postrm.in "${debian_dir}"/browser.preinst.in
+
#####################################
# Build new assets
# dpkg-buildpackage needs the orig tarball, debian tarball, and dsc file.
bgstack15