mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
20 lines
393 B
Text
20 lines
393 B
Text
post_install() {
|
|
cat << EOF
|
|
|
|
NOTE for squeeze:
|
|
----
|
|
==> please install bzip2, gzip, unrar, zip, unzip and lzop
|
|
==> to use all of squeeze's capabilities
|
|
EOF
|
|
update-desktop-database -q
|
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
post_remove() {
|
|
update-desktop-database -q
|
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
|
}
|