summarylogtreecommitdiffstats
path: root/unity-editor.install
blob: 9ff321d825f30e0ed2fc640660d04e1df24d009a (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
pre_install() {
	echo -n "If you are using an AUR-Helper or building on a small partition (like /tmp),"
	echo -n "you might want to change the build-/cache-directory as this package is rather big"
}

post_install() {
  echo -n "Updating desktop MIME database..."
  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
  echo " done."

  echo -n "Updating icon cache..."
  update-desktop-database -q
  echo " done."
}

post_upgrade() {
  post_install $1
}

post_remove() {
  post_install $1
}

# vim:set sw=2 sts=2 et: