mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
16 lines
208 B
Text
16 lines
208 B
Text
|
# arg 1: the new package version
|
||
|
post_install() {
|
||
|
cat << EOM
|
||
|
|
||
|
--> to support gpg, please use the following line in your ~/.muttrc
|
||
|
|
||
|
source /etc/Muttrc.gpg.dist
|
||
|
|
||
|
EOM
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|