summarylogtreecommitdiffstats
path: root/ocp-git.install
blob: 6f870234420c77abb4a8127b087093f0dc5c87fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}