| 1 | #!/bin/sh |
|---|
| 2 | # Filename: PBI.FirstRun.sh |
|---|
| 3 | # Place any custom installation code here. |
|---|
| 4 | # This script will be run before your program is extracted into |
|---|
| 5 | # /Programs/<ProgNameVer>/ |
|---|
| 6 | # Available variables: |
|---|
| 7 | # $PROGDIR - Directory where the files will be extracted to. |
|---|
| 8 | # $USERNAME - Username of who started the installation. |
|---|
| 9 | # $INSTALLMODE - Set to 'TEXT' or 'GUI', depending on which installer is running. |
|---|
| 10 | # |
|---|
| 11 | # Return a '2' to halt the PBI installation |
|---|
| 12 | # TIP: 'kdialog' should be used for user interaction. |
|---|
| 13 | # To interact with the progress dialog echo these flags: |
|---|
| 14 | # echo 'TOTALSTEPS: <num>' # Set the total steps of the progress bar |
|---|
| 15 | # echo 'SETSTEPS: <num>' # Set the current progress of the progress bar |
|---|
| 16 | # echo 'MSG: <text>' # Display this text above progress bar |
|---|
| 17 | ######################################### |
|---|
| 18 | if [ -e "/usr/local/bin/scorched3d" ] |
|---|
| 19 | then |
|---|
| 20 | # Looks like FF is installed, ask if they want to remove the old one |
|---|
| 21 | ls -al /usr/local/bin/scorched3d | grep Programs 2>/dev/null |
|---|
| 22 | if [ "$?" = "0" ] |
|---|
| 23 | then |
|---|
| 24 | kdialog --yesno "Scorched 3D is already installed, do you wish to uninstall it?" |
|---|
| 25 | if [ "$?" = "0" ] |
|---|
| 26 | then |
|---|
| 27 | FF="`ls -al /usr/local/bin/scorched3d | cut -d '>' -f 2 | cut -d "/" -f 3`" |
|---|
| 28 | echo $FF | grep Scorched 3D 2>/dev/null |
|---|
| 29 | if [ "$?" = "0" ] |
|---|
| 30 | then |
|---|
| 31 | PBIdelete -remove ${FF} |
|---|
| 32 | else |
|---|
| 33 | kdialog --sorry "Scorched 3D could not be automatically removed... Please remove it in Add / Remove Programs and try again." |
|---|
| 34 | return 2 |
|---|
| 35 | fi |
|---|
| 36 | else |
|---|
| 37 | kdialog --sorry "Scorched 3D is already installed, it must be uninstalled before loading this PBI" |
|---|
| 38 | return 2 |
|---|
| 39 | fi |
|---|
| 40 | |
|---|
| 41 | else |
|---|
| 42 | # Could not find a link to PBI folder |
|---|
| 43 | kdialog --sorry "Scorched 3D is already installed, it must be uninstalled before loading this PBI" |
|---|
| 44 | return 2 |
|---|
| 45 | fi |
|---|
| 46 | fi |
|---|