1 |
berlac |
1.1 |
#!/bin/sh |
2 |
|
|
## ---------------------------------------------------------------------- |
3 |
|
|
## debian/postinst : postinstallation script for frodo |
4 |
|
|
## ---------------------------------------------------------------------- |
5 |
|
|
|
6 |
|
|
## ---------------------------------------------------------------------- |
7 |
|
|
set -e |
8 |
|
|
|
9 |
|
|
chmod +x /usr/bin/mirage |
10 |
|
|
echo "updated permiss" |
11 |
|
|
|
12 |
|
|
gtk-update-icon-cache -f /usr/share/icons/hicolor |
13 |
|
|
|
14 |
|
|
|
15 |
|
|
oldversion="$2" |
16 |
|
|
if [ -z "$oldversion" ]; then |
17 |
|
|
maemo-select-menu-location frodo.desktop |
18 |
|
|
fi |
19 |
|
|
|
20 |
|
|
exit 0 |