Inno Setup

Informations

Creator Message
Quentin PÂRIS Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 16704
Wine: 4.0.3

Feedbacks

Description

This software is a installation system. Wikipedia.

Source code

#!/usr/bin/env playonlinux-bash
# Date : (2010-01-03 10-00)
# Last revision : (2019-12-14 07-04)
# Wine version used : 4.0.3
# Distribution used to test : Linux Mint 19.2
# Author : Tinou ,congelli501, NSLW

# CHANGELOG
# [SuperPlumus] (2013-07-08 11-01)
#   Update POLv3 -> POLv4
# [Yaotl] (2019-12-14 07-04)
#   Fix invalid URL
#   Update Wine to 4.0.3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Inno Setup"
PREFIX="InnoSetup"
WINEVERSION="4.0.3"

POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 269
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jrsoftware.org/isinfo.php" "Tinou" "$PREFIX"

POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://www.jrsoftware.org/download.php/is.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "is.exe" /SILENT /DIR="C:\Program Files\Inno Setup"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete

POL_Shortcut "Compil32.exe" "$TITLE"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
Yaotl Saturday 14 December 2019 at 7:52
Yaotl Anonymous

Information

This update has been approved by the team.

Differences

@@ -1,45 +1,41 @@
-#!/bin/bash
+#!/usr/bin/env playonlinux-bash
 # Date : (2010-01-03 10-00)
-# Last revision : (2013-07-08 11-01)
-# Wine version used : N/A
-# Distribution used to test : N/A
+# Last revision : (2019-12-14 07-04)
+# Wine version used : 4.0.3
+# Distribution used to test : Linux Mint 19.2
 # Author : Tinou ,congelli501, NSLW
 
 # CHANGELOG
 # [SuperPlumus] (2013-07-08 11-01)
 #   Update POLv3 -> POLv4
+# [Yaotl] (2019-12-14 07-04)
+#   Fix invalid URL
+#   Update Wine to 4.0.3
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Inno Setup"
 PREFIX="InnoSetup"
-WINEVERSION="4.0"
+WINEVERSION="4.0.3"
 
 POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
 POL_SetupWindow_Init
+POL_SetupWindow_SetID 269
 POL_Debug_Init
 
-POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jordanr.dhs.org/" "Tinou" "$PREFIX"
+POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jrsoftware.org/isinfo.php" "Tinou" "$PREFIX"
+
+POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
 
-POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
 
 POL_System_TmpCreate "$PREFIX"
-
-# Unicode
-POL_SetupWindow_question "$(eval_gettext 'Do you want to install the unicode version of Inno Setup?')" "$TITLE"
-if [ "$APP_ANSWER" = 'TRUE' ]; then
-    FILENAME="is-unicode.exe"
-else
-    FILENAME="is.exe"
-fi
-
 cd "$POL_System_TmpDir"
-POL_Download "http://www.jordanr.dhs.org/download.php/$FILENAME" ""
+POL_Download "http://www.jrsoftware.org/download.php/is.exe"
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$FILENAME" /SILENT
+POL_Wine "is.exe" /SILENT /DIR="C:\Program Files\Inno Setup"
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2010-01-03 10-00)
# Last revision : (2019-12-14 07-04)
# Wine version used : 4.0.3
# Distribution used to test : Linux Mint 19.2
# Author : Tinou ,congelli501, NSLW

# CHANGELOG
# [SuperPlumus] (2013-07-08 11-01)
#   Update POLv3 -> POLv4
# [Yaotl] (2019-12-14 07-04)
#   Fix invalid URL
#   Update Wine to 4.0.3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Inno Setup"
PREFIX="InnoSetup"
WINEVERSION="4.0.3"

POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 269
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jrsoftware.org/isinfo.php" "Tinou" "$PREFIX"

POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://www.jrsoftware.org/download.php/is.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "is.exe" /SILENT /DIR="C:\Program Files\Inno Setup"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete

POL_Shortcut "Compil32.exe" "$TITLE"

POL_SetupWindow_Close
exit

Replies

Saturday 14 December 2019 at 8:43
Script approved.
Yaotl Monday 11 March 2019 at 22:47
Yaotl Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -14,6 +14,7 @@
 
 TITLE="Inno Setup"
 PREFIX="InnoSetup"
+WINEVERSION="4.0"
 
 POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
 POL_SetupWindow_Init
@@ -21,8 +22,9 @@
 
 POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jordanr.dhs.org/" "Tinou" "$PREFIX"
 
+POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate
+POL_Wine_PrefixCreate "$WINEVERSION"
 
 POL_System_TmpCreate "$PREFIX"
 

New source code

#!/bin/bash
# Date : (2010-01-03 10-00)
# Last revision : (2013-07-08 11-01)
# Wine version used : N/A
# Distribution used to test : N/A
# Author : Tinou ,congelli501, NSLW

# CHANGELOG
# [SuperPlumus] (2013-07-08 11-01)
#   Update POLv3 -> POLv4

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Inno Setup"
PREFIX="InnoSetup"
WINEVERSION="4.0"

POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jordanr.dhs.org/" "Tinou" "$PREFIX"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_System_TmpCreate "$PREFIX"

# Unicode
POL_SetupWindow_question "$(eval_gettext 'Do you want to install the unicode version of Inno Setup?')" "$TITLE"
if [ "$APP_ANSWER" = 'TRUE' ]; then
    FILENAME="is-unicode.exe"
else
    FILENAME="is.exe"
fi

cd "$POL_System_TmpDir"
POL_Download "http://www.jordanr.dhs.org/download.php/$FILENAME" ""
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$FILENAME" /SILENT
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete

POL_Shortcut "Compil32.exe" "$TITLE"

POL_SetupWindow_Close
exit

Replies

andykimpe Saturday 28 June 2014 at 6:41
andykimpe Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Système d'exploitation : Ubuntu 14.04 trusty LTS
Carte graphique : ?
Commentaires : 100% work

Differences

@@ -37,7 +37,7 @@
 cd "$POL_System_TmpDir"
 POL_Download "http://www.jordanr.dhs.org/download.php/$FILENAME" ""
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$FILENAME"
+POL_Wine "$FILENAME" /SILENT
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete

New source code

#!/bin/bash
# Date : (2010-01-03 10-00)
# Last revision : (2013-07-08 11-01)
# Wine version used : N/A
# Distribution used to test : N/A
# Author : Tinou ,congelli501, NSLW

# CHANGELOG
# [SuperPlumus] (2013-07-08 11-01)
#   Update POLv3 -> POLv4

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Inno Setup"
PREFIX="InnoSetup"

POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/inno_setup/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "JR Software" "http://www.jordanr.dhs.org/" "Tinou" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate

POL_System_TmpCreate "$PREFIX"

# Unicode
POL_SetupWindow_question "$(eval_gettext 'Do you want to install the unicode version of Inno Setup?')" "$TITLE"
if [ "$APP_ANSWER" = 'TRUE' ]; then
    FILENAME="is-unicode.exe"
else
    FILENAME="is.exe"
fi

cd "$POL_System_TmpDir"
POL_Download "http://www.jordanr.dhs.org/download.php/$FILENAME" ""
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$FILENAME" /SILENT
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete

POL_Shortcut "Compil32.exe" "$TITLE"

POL_SetupWindow_Close
exit

Replies

Anonymous
Wednesday 2 July 2014 at 17:39
What does it change?
Anonymous
Wednesday 2 July 2014 at 22:54
start install on silent mode http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline
Anonymous
Wednesday 2 July 2014 at 23:14
Yes, right. Your script is accepted

This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com