icecat: update upstream v128.13.0-1gnu1

This commit is contained in:
Ark74 2025-08-07 14:40:00 -06:00
parent a8d305c270
commit 0cdda4f34e
51 changed files with 5487 additions and 4614 deletions

View file

@ -1,14 +1,13 @@
if [ "" = "configure" ] || [ "" = "abort-upgrade" ] ; then
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] ; then
[ -f /usr/bin/firefox-esr ] || ln -s /usr/bin/icecat /usr/bin/firefox-esr
for HOMEDIR in /home/cups-pk-helper
/home/ark
for HOMEDIR in $(grep :/home/ /etc/passwd |grep -v usbmux |grep -v syslog|cut -d : -f 6)
do
[ -d /.mozilla/icecat ] && continue || true
[ -d /.mozilla/firefox-esr ] || continue
echo Linking /.mozilla/firefox-esr into /.mozilla/icecat
ln -s /.mozilla/firefox-esr /.mozilla/icecat
[ -d $HOMEDIR/.mozilla/icecat ] && continue || true
[ -d $HOMEDIR/.mozilla/firefox-esr ] || continue
echo Linking $HOMEDIR/.mozilla/firefox-esr into $HOMEDIR/.mozilla/icecat
ln -s $HOMEDIR/.mozilla/firefox-esr $HOMEDIR/.mozilla/icecat
done
fi
exit 0