mirror of
https://aur.archlinux.org/ocp.git
synced 2024-11-22 20:36:28 +00:00
22 lines
478 B
Text
22 lines
478 B
Text
|
infodir=usr/share/info
|
||
|
|
||
|
post_install() {
|
||
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
update-desktop-database -q
|
||
|
[ -x usr/bin/install-info ] || return 0
|
||
|
install-info $infodir/ocp.info.gz $infodir/dir 2> /dev/null
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
install-info --delete $infodir/ocp.info.gz $infodir/dir 2> /dev/null
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
update-desktop-database -q
|
||
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
}
|