|
Revision 1889, 0.6 KB
(checked in by kris, 7 months ago)
|
|
Added a scilab module to the build server
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # Filename: PBI.RemoveScript.sh |
|---|
| 3 | # Place any custom removal code here. |
|---|
| 4 | # This script will be run before your program is deleted. |
|---|
| 5 | # ${1} is the directory name. |
|---|
| 6 | # ${2} is the username of person performing the deletion. |
|---|
| 7 | # TIP: 'kdialog' should be used for user interaction. |
|---|
| 8 | ######################################### |
|---|
| 9 | |
|---|
| 10 | rm /Programs/SciLab |
|---|
| 11 | rm /usr/local/bin/scilab |
|---|
| 12 | rm /usr/local/bin/intersci |
|---|
| 13 | rm /usr/local/bin/intersci-n |
|---|
| 14 | rm /usr/local/lib/scilab |
|---|
| 15 | |
|---|
| 16 | ls -al /usr/local/libexec/gnome-pty-helper | grep Scilab >/dev/null 2>/dev/null |
|---|
| 17 | if [ "$?" = "0" ] |
|---|
| 18 | then |
|---|
| 19 | rm /usr/local/libexec/gnome-pty-helper |
|---|
| 20 | fi |
|---|
| 21 | |
|---|