blob: 86dfbeca6b6e217a9074eadff1a0d215924e3243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
xdg-icon-resource forceupdate
xdg-mime install /usr/share/blueprint64/bbp-mime.xml
update-desktop-database /usr/share/applications
}
pre_remove() {
xdg-mime uninstall /usr/share/blueprint64/bbp-mime.xml
}
post_remove() {
xdg-icon-resource forceupdate
update-desktop-database /usr/share/applications
}
|