source: ipk/source.sh4/tools_lcdpearl1/CONTROL/postinst@ 23669

Last change on this file since 23669 was 23669, checked in by nit, 13 years ago
  • Property svn:executable set to *
File size: 458 bytes
Line 
1#!/bin/sh
2INSTDIR="$1"
3PLUGINDIR="$INSTDIR/usr/local/share/titan/plugins/lcdpearl1"
4
5if [ $INSTDIR != "/var" ]; then
6 rm -rf /var/usr/local/share/titan/plugins/lcdpearl1 >/dev/null 2>&1
7 ln -sfn "$PLUGINDIR" /var/usr/local/share/titan/plugins/lcdpearl1
8fi
9
10if [ `cat /proc/version | grep stm24 | wc -l` -eq 1 ]; then
11 cd /tmp/stm24
12else
13 cd /tmp/stm23
14fi
15cp -RP lcdpearl1 "$INSTDIR/usr/local/share/titan/plugins"
16cd /tmp
17rm -rf stm24
18rm -rf stm23
19
20exit 0
Note: See TracBrowser for help on using the repository browser.