2011-06-25 19:41:07 +02:00
|
|
|
; Copyright (c) uib gmbh (www.uib.de)
|
|
|
|
; This sourcecode is owned by uib gmbh
|
|
|
|
; and published under the Terms of the General Public License.
|
|
|
|
; credits: http://www.opsi.org/credits/
|
|
|
|
|
|
|
|
[Actions]
|
|
|
|
requiredWinstVersion >= "4.10.8.6"
|
|
|
|
|
|
|
|
DefVar $MsiId$
|
2012-02-15 17:11:49 +01:00
|
|
|
DefVar $MsiIdHelp$
|
2012-02-26 08:58:07 +01:00
|
|
|
DefVar $MsiIdOld$
|
|
|
|
DefVar $MsiIdHelpOld$
|
2011-06-25 19:41:07 +02:00
|
|
|
DefVar $LogDir$
|
|
|
|
DefVar $ExitCode$
|
|
|
|
DefVar $ProductId$
|
|
|
|
DefVar $InstallDir$
|
2012-02-26 08:58:07 +01:00
|
|
|
DefVar $InstallDirOld$
|
2011-06-25 19:41:07 +02:00
|
|
|
|
|
|
|
Set $LogDir$ = "%SystemDrive%\tmp"
|
|
|
|
|
2012-02-15 17:11:49 +01:00
|
|
|
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
|
|
|
|
; and adds the following variables:
|
|
|
|
; from builder-product.cfg : all variables definded by attribute WINST[index]
|
|
|
|
; from builder-product.cfg : VENDOR PN VERSION RELEASE PRIORITY ADVICE TYPE
|
|
|
|
; from opsi-builder.cfg : CREATOR_TAG CREATOR_NAME CREATOR_EMAIL
|
|
|
|
; auto generated winst-variables
|
|
|
|
; $IconFile$: path to product picture
|
|
|
|
;
|
|
|
|
@@BUILDER_VARIABLES@@
|
|
|
|
|
2011-06-25 19:41:07 +02:00
|
|
|
; ----------------------------------------------------------------
|
|
|
|
; - Please edit the following values -
|
|
|
|
; ----------------------------------------------------------------
|
|
|
|
Set $ProductId$ = "libreoffice"
|
2012-02-15 20:15:46 +01:00
|
|
|
Set $InstallDir$ = "%ProgramFiles32Dir%\LibreOffice 3.5"
|
2012-02-26 08:58:07 +01:00
|
|
|
Set $InstallDirOld$ = "%ProgramFiles32Dir%\LibreOffice 3.4"
|
2011-06-25 19:41:07 +02:00
|
|
|
; ----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
comment "Show product picture"
|
|
|
|
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
|
|
|
|
|
|
|
|
Message "Uninstalling " + $ProductId$ + " ..."
|
|
|
|
|
|
|
|
if FileExists("%ScriptPath%\delsub32.ins")
|
|
|
|
comment "Start uninstall sub section"
|
|
|
|
Sub "%ScriptPath%\delsub32.ins"
|
|
|
|
endif
|
|
|
|
|