summarylogtreecommitdiffstats
path: root/thunderbird-earlybird.install
blob: a8f63a02170c9cd3adeefce71dcc637b9bc3d66a (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
26
27
post_install() {
    update-desktop-database -q
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    repo_notify
}

post_upgrade() {
    post_install
}

post_remove() {
    post_install
}

repo_notify(){
    ARCH=$(uname -m)
    if [[ $ARCH -eq "x86_64" ]]; then
        echo "!!!=== You may also use repo with prepared package: ===!!!"
        echo "Just append the lines to your '/etc/pacman.conf':"
        echo
        echo "[alextalker]"
        echo "SigLevel = Optional TrustAll"
        echo "Server = http://alextalker.ho.ua/aurrepo/"
        echo
        echo "=========================================================="
    fi
}