50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
|
; 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/en/credits/
|
||
|
|
||
|
[Actions]
|
||
|
requiredWinstVersion >= "4.11.2.6"
|
||
|
|
||
|
DefVar $MsiId$
|
||
|
DefVar $UninstallProgram$
|
||
|
DefVar $LogDir$
|
||
|
DefVar $ExitCode$
|
||
|
DefVar $ProductId$
|
||
|
DefVar $InstallDir$
|
||
|
DefVar $LicenseRequired$
|
||
|
DefVar $LicensePool$
|
||
|
|
||
|
Set $LogDir$ = "%SystemDrive%\opsi.org\tmp"
|
||
|
|
||
|
; 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@@
|
||
|
|
||
|
; ----------------------------------------------------------------
|
||
|
; - Please edit the following values -
|
||
|
; ----------------------------------------------------------------
|
||
|
Set $ProductId$ = "gpg4win.gpg4win"
|
||
|
; the path were we find the product after the installation
|
||
|
Set $InstallDir$ = "%ProgramFiles32Dir%\gnu\gnupg"
|
||
|
; ----------------------------------------------------------------
|
||
|
|
||
|
|
||
|
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
|
||
|
|
||
|
|