summarylogtreecommitdiffstats
path: root/efisc2023.install
blob: 74ff41b54b3df3043b4111779e03f0002a0509b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  echo "Installing mimetypes"
  xdg-mime install --mode system --novendor /usr/share/java/efisc2023/efisc2023.xml
  xdg-icon-resource install --novendor --context mimetypes --size 48 --mode system /usr/share/icons/hicolor/64x64/apps/efisc2023.png application-efisc2023
  update-mime-database /usr/share/mime
}

pre_remove() {
  echo "Uninstalling mimetypes"
  xdg-mime uninstall --mode system --novendor /usr/share/java/efisc2023/efisc2023.xml
  xdg-icon-resource uninstall --novendor --context mimetypes --size 48 --mode system application-efisc2023
  update-mime-database /usr/share/mime
}