You are here
Adobe Audition CS6
Informations
Creator | Message |
---|---|
oovyxd
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionSource code#!/bin/bash # Date : (2019-04-29) # Version: 1.0 # Distribution used to test : Arch Linux (Manjaro w. DDE) 64-bit # Author : oovyxd # Licence : GPLv3 # PlayOnLinux: 4.2-1 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="AuditionCS6" WINEVERSION="4.6" TITLE="Adobe Audition CS6" EDITOR="oovyxd" GAME_URL="http://www.oovy.dev" AUTHOR="oovyxd" #Initialization POL_GetSetupImages "http://rozn.yt/pol-resources/anyinstaller/top.jpg" "http://rozn.yt/pol-resources/anyinstaller/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2316 POL_Debug_Init Set_OS "win7" # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" #Dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml3 POL_Call POL_Install_msxml6 POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "Adobe Audition CS6.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
oovyxd | Monday 29 April 2019 at 20:56 |
oovyxd
|
InformationThis update has been approved by the team. MessageInstaller Version 1.0 Differences@@ -0,0 +1,61 @@ +#!/bin/bash +# Date : (2019-04-29) +# Version: 1.0 +# Distribution used to test : Arch Linux (Manjaro w. DDE) 64-bit +# Author : oovyxd +# Licence : GPLv3 +# PlayOnLinux: 4.2-1 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="AuditionCS6" +WINEVERSION="4.6" +TITLE="Adobe Audition CS6" +EDITOR="oovyxd" +GAME_URL="http://www.oovy.dev" +AUTHOR="oovyxd" + +#Initialization +POL_GetSetupImages "http://rozn.yt/pol-resources/anyinstaller/top.jpg" "http://rozn.yt/pol-resources/anyinstaller/left.jpg" "$TITLE" +POL_SetupWindow_Init +POL_SetupWindow_SetID 2316 + +POL_Debug_Init +Set_OS "win7" +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" +INSTALLER="$APP_ANSWER" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +#Dependencies +POL_Call POL_Install_atmlib +POL_Call POL_Install_gdiplus +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msxml6 +POL_Call POL_Install_vcrun2005 +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma2 +POL_Call POL_Install_FontsSmoothRGB + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" + +# Installation +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "Adobe Audition CS6.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2019-04-29) # Version: 1.0 # Distribution used to test : Arch Linux (Manjaro w. DDE) 64-bit # Author : oovyxd # Licence : GPLv3 # PlayOnLinux: 4.2-1 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="AuditionCS6" WINEVERSION="4.6" TITLE="Adobe Audition CS6" EDITOR="oovyxd" GAME_URL="http://www.oovy.dev" AUTHOR="oovyxd" #Initialization POL_GetSetupImages "http://rozn.yt/pol-resources/anyinstaller/top.jpg" "http://rozn.yt/pol-resources/anyinstaller/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2316 POL_Debug_Init Set_OS "win7" # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" #Dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml3 POL_Call POL_Install_msxml6 POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "Adobe Audition CS6.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesTuesday 30 April 2019 at 9:51
|
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