summarylogtreecommitdiffstats
path: root/kitematic.install
blob: 905b35595edf3491727d4fdbda20b43b9e4d8f50 (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
28
post_install() {
  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
  update-desktop-database -q

  cat << _EOF

  ==> Kitematic install/upgrade note:
  ------------------------------------------------------------------------------
    Linux support for Kitematic is not yet official.

    This AUR package solely installs a binary build from the linux-support branch
    at https://github.com/zedtux/kitematic and adds a .desktop file and icon.

    For the rest you are on your own ;)
    See:
      - https://github.com/kitematic/kitematic/wiki/Early-Linux-Support
      - https://github.com/kitematic/kitematic/issues/49

_EOF
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}