blob: 0d31efa1a994618fb039c6e6854e5256bfb4816d (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
update-mime-database /usr/share/mime || true
update-desktop-database /usr/share/applications || true
}
post_remove() {
# Delete the link to the binary
rm -f '/usr/bin/notable'
}
|