mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
17 lines
300 B
Text
17 lines
300 B
Text
post_install() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
post_upgrade() {
|
|
if [ -f /etc/mldonkey.conf ]; then
|
|
mv /etc/mldonkey.conf /etc/conf.d/mldonkey
|
|
cat << EOM
|
|
|
|
==> mldonkey post upgrade message:
|
|
==> /etc/mldonkey.conf has been moved in /etc/conf.d/mldonkey
|
|
|
|
EOM
|
|
fi
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|