summarylogtreecommitdiffstats
path: root/filebot-cli.install
blob: 052de75ead5ec98837edb3f189e85e9e40565b9a (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
25
pre_install() {
    if [ -e /usr/bin/filebot ]; then
        rm /usr/bin/filebot
    fi
}

pre_upgrade() {
    if [ -e /usr/bin/filebot ]; then
        rm /usr/bin/filebot
    fi
}

pre_remove() {
    if [ -e /usr/bin/filebot ]; then
        rm /usr/bin/filebot
    fi
}

post_install() {
    ln -sf /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
}

post_upgrade() {
    ln -sf /usr/share/filebot/bin/filebot.sh /usr/bin/filebot
}