| Line | |
|---|
| 1 | #!/bin/sh
|
|---|
| 2 | INSTDIR="$1"
|
|---|
| 3 | NAME=lcdsamsung
|
|---|
| 4 |
|
|---|
| 5 | if [ ! -e "$INSTDIR/usr/local/share/titan/plugins/$NAME/skin.xml" ]; then
|
|---|
| 6 | echo "use ipk skin file: skin.xml"
|
|---|
| 7 | echo "rename $INSTDIR/usr/local/share/titan/plugins/$NAME/skin.xml.skin > $INSTDIR/usr/local/share/titan/plugins/$NAME/skin.xml"
|
|---|
| 8 | mv "$INSTDIR/usr/local/share/titan/plugins/$NAME/skin.xml.skin" "$INSTDIR/usr/local/share/titan/plugins/$NAME/skin.xml"
|
|---|
| 9 | else
|
|---|
| 10 | echo "found user skin file: skin.xml"
|
|---|
| 11 | echo "skip ipk skin file: skin.xml.skin"
|
|---|
| 12 | fi
|
|---|
| 13 |
|
|---|
| 14 | exit 0
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.