mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-11 06:05:13 +01:00
21 lines
497 B
Bash
21 lines
497 B
Bash
#!/bin/sh
|
|
## ----------------------------------------------------------------------
|
|
## debian/postinst : postinstallation script for frodo
|
|
## ----------------------------------------------------------------------
|
|
|
|
## ----------------------------------------------------------------------
|
|
set -e
|
|
|
|
chmod +x /usr/bin/mirage
|
|
echo "updated permiss"
|
|
|
|
gtk-update-icon-cache -f /usr/share/icons/hicolor
|
|
|
|
|
|
oldversion="$2"
|
|
if [ -z "$oldversion" ]; then
|
|
maemo-select-menu-location frodo.desktop
|
|
fi
|
|
|
|
exit 0
|