blob: 9a06fb3333151d509588d2f73ae639195a09dc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
post_upgrade() {
post_install $1
if [ "$(vercmp $2 0.9.4-3)" -lt 0 ]; then
echo "==> The handbrake CLI binary is now in a separate package: handbrake-cli"
fi
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
}
|