Je bent hier
CAJViewer 7.2
Informatie
| Creator | Bericht |
|---|---|
yinflying
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks0 0 OmschrijvingCAJViewer is a reader developped by the CNKI (China National Knowledge Infrastructure). Broncode#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="CAJViewer"
WINEVERSION="2.22"
TITLE="CAJViewer 7.2"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
if [ "$POL_OS" = "Linux" ]; then
wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"
POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE"
SetupIs="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"
POL_Extension_Write caj "CAJViewer 7.2"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit |
Contributions
Filters:
Contribute| Member | Bericht |
| Dadu042 | Zondag 3 November 2019 om 0:01 |
|
Dadu042
|
InformationThis update has been approved by the team. Bericht-> Wine 2.22 Differences@@ -5,7 +5,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="CAJViewer" -WINEVERSION="2.0-rc3" +WINEVERSION="2.22" TITLE="CAJViewer 7.2" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" New source code#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="CAJViewer"
WINEVERSION="2.22"
TITLE="CAJViewer 7.2"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
if [ "$POL_OS" = "Linux" ]; then
wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"
POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE"
SetupIs="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"
POL_Extension_Write caj "CAJViewer 7.2"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit Antwoorden |
| yinflying | Dinsdag 27 December 2016 om 8:23 |
yinflying
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,48 @@ +#!/bin/bash + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="CAJViewer" +WINEVERSION="2.0-rc3" +TITLE="CAJViewer 7.2" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 801 + +POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" + +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" +fi +POL_Debug_Init +POL_System_SetArch "x86" + +POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE" +SetupIs="$APP_ANSWER" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +POL_Call POL_Install_msxml6 +POL_Call POL_Install_msxml3 + +POL_Wine_OverrideDLL "native,builtin" "riched20" +POL_Wine_OverrideDLL "native" "msxml3" +POL_Wine_OverrideDLL "native" "msxml6" + +POL_Wine_WaitBefore "$TITLE" + +POL_Wine "$SetupIs" +POL_Wine_WaitExit "$TITLE" + +POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;" + +POL_Extension_Write caj "CAJViewer 7.2" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="CAJViewer"
WINEVERSION="2.0-rc3"
TITLE="CAJViewer 7.2"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
if [ "$POL_OS" = "Linux" ]; then
wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"
POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE"
SetupIs="$APP_ANSWER"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"
POL_Extension_Write caj "CAJViewer 7.2"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit Antwoorden |
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
Installeer dit programma