Template
1
0
Fork 0
mirror of https://aur.archlinux.org/ocp-git.git synced 2024-10-22 21:42:56 +00:00
ocp-git/ocp-git.install
2016-03-21 16:50:34 +02:00

24 lines
609 B
Text

infodir=usr/share/info
post_install() {
echo
echo Please note that you need to rebuild ocp-git after installing any of the optional dependencies for it.
echo
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
}