summarylogtreecommitdiffstats
path: root/crossover.install
blob: 1d261ef26882626225c8ae4b73879c8036ef43b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
    echo "Creating menus and file associations, please wait..."
    /opt/cxoffice/bin/cxmenu --crossover --install
    /opt/cxoffice/bin/cxassoc --crossover --install
    echo "Done!"
    echo
    echo "This is the demo version, to fully activate it you must have a valid serial and register it."
    echo "More information about this process here:"
    echo "http://www.codeweavers.com/support/docs/crossover-linux/demo"
}

post_upgrade() {
    post_install
}

pre_remove() {
    echo "Removing menus and file associations, please wait..."
    /opt/cxoffice/bin/cxmenu --crossover --uninstall
    /opt/cxoffice/bin/cxassoc --crossover --uninstall
    rm -f /usr/local/share/icons/hicolor/*x*/apps/cxmenu-*.png
    echo "Done!"
}