aports/community/mutt/mutt.post-upgrade
Jakub Jirutka 6add2ab9d1 community/mutt: remove dependency gnupg
Requested by @mps.

Resolves #12938
2021-08-21 21:38:57 +02:00

15 lines
277 B
Bash

#!/bin/sh
ver_old=$2
if [ "$(apk version -t "$ver_old" '2.1.1-r2')" = '<' ]; then
cat >&2 <<-EOF
*
* mutt package doesn't depend on full GnuGP suite anymore. If you use S/MIME,
* install package 'gpgsm' (you may also need gnupg-dirmngr and gpg-agent).
*
EOF
fi
exit 0