iTunes 10
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks0 2 DescriptionDescription
ScreenshotsSource code#!/bin/bash # Date : (2009-07-07 19-30) # Last revision : (2013-08-17 19-10) # Wine version used : N/A # Distribution used to test : N/A [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="iTunes 10" PREFIX="iTunes10" POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 815 POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync a USB device?')" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ]; then POL_SetupWindow_message "$(eval_gettext 'Wine does not support USB yet. You will not able to sync your iDevices with $APPLICATION_TITLE. Sorry')" "$TITLE" POL_SetupWindow_Close exit 0 fi cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup="$APP_ANSWER" if [ "$(basename "$setup")" = "iTunes64Setup.exe" ]; then POL_Debug_Fatal "$(eval_gettext 'Please select the 32-bit version of iTunes')" fi POL_System_SetArch "x86" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$SITE/divers/QuickTime.qtp" "417f9bf5ec52d3bfa5826b4905658dac" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.4.1" Set_OS winxp POL_Wine_WaitBefore "$TITLE" cd "$WINEPREFIX/drive_c/users" for user in * do cd "$WINEPREFIX/drive_c/users/$user" mkdir -p "Local Settings/Application Data/Apple Computer/QuickTime" cd "Local Settings/Application Data/Apple Computer/QuickTime" mv QuickTime.qtp QuickTime.back cp "$POL_System_TmpDir/QuickTime.qtp" ./ done POL_Call POL_Install_LunaTheme POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$setup" /silent POL_Call POL_Install_gdiplus POL_Shortcut "iTunes.exe" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
petch | Sunday 3 May 2015 at 13:02 |
petch
|
InformationThis update has been approved by the team. MessageAdd POL_SetupWindow_SetID support Differences@@ -13,6 +13,7 @@ POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init +POL_SetupWindow_SetID 815 POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" New source code#!/bin/bash # Date : (2009-07-07 19-30) # Last revision : (2013-08-17 19-10) # Wine version used : N/A # Distribution used to test : N/A [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="iTunes 10" PREFIX="iTunes10" POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 815 POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync a USB device?')" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ]; then POL_SetupWindow_message "$(eval_gettext 'Wine does not support USB yet. You will not able to sync your iDevices with $APPLICATION_TITLE. Sorry')" "$TITLE" POL_SetupWindow_Close exit 0 fi cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup="$APP_ANSWER" if [ "$(basename "$setup")" = "iTunes64Setup.exe" ]; then POL_Debug_Fatal "$(eval_gettext 'Please select the 32-bit version of iTunes')" fi POL_System_SetArch "x86" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$SITE/divers/QuickTime.qtp" "417f9bf5ec52d3bfa5826b4905658dac" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.4.1" Set_OS winxp POL_Wine_WaitBefore "$TITLE" cd "$WINEPREFIX/drive_c/users" for user in * do cd "$WINEPREFIX/drive_c/users/$user" mkdir -p "Local Settings/Application Data/Apple Computer/QuickTime" cd "Local Settings/Application Data/Apple Computer/QuickTime" mv QuickTime.qtp QuickTime.back cp "$POL_System_TmpDir/QuickTime.qtp" ./ done POL_Call POL_Install_LunaTheme POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$setup" /silent POL_Call POL_Install_gdiplus POL_Shortcut "iTunes.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
petch | Sunday 3 May 2015 at 12:44 |
petch
|
WarningThis update has not been approved yet by the team. MessageWine 1.7.41 is supposed to help with shop connection: Differences@@ -13,6 +13,7 @@ POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init +POL_SetupWindow_SetID 815 POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" @@ -39,7 +40,7 @@ POL_Download "$SITE/divers/QuickTime.qtp" "417f9bf5ec52d3bfa5826b4905658dac" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.4.1" +POL_Wine_PrefixCreate "1.7.41" Set_OS winxp New source code#!/bin/bash # Date : (2009-07-07 19-30) # Last revision : (2013-08-17 19-10) # Wine version used : N/A # Distribution used to test : N/A [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="iTunes 10" PREFIX="iTunes10" POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 815 POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync a USB device?')" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ]; then POL_SetupWindow_message "$(eval_gettext 'Wine does not support USB yet. You will not able to sync your iDevices with $APPLICATION_TITLE. Sorry')" "$TITLE" POL_SetupWindow_Close exit 0 fi cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup="$APP_ANSWER" if [ "$(basename "$setup")" = "iTunes64Setup.exe" ]; then POL_Debug_Fatal "$(eval_gettext 'Please select the 32-bit version of iTunes')" fi POL_System_SetArch "x86" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$SITE/divers/QuickTime.qtp" "417f9bf5ec52d3bfa5826b4905658dac" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.41" Set_OS winxp POL_Wine_WaitBefore "$TITLE" cd "$WINEPREFIX/drive_c/users" for user in * do cd "$WINEPREFIX/drive_c/users/$user" mkdir -p "Local Settings/Application Data/Apple Computer/QuickTime" cd "Local Settings/Application Data/Apple Computer/QuickTime" mv QuickTime.qtp QuickTime.back cp "$POL_System_TmpDir/QuickTime.qtp" ./ done POL_Call POL_Install_LunaTheme POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$setup" /silent POL_Call POL_Install_gdiplus POL_Shortcut "iTunes.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
FuzzyToothpaste | Tuesday 16 September 2014 at 1:41 |
FuzzyToothpaste
|
WarningThis update has not been approved yet by the team. Differences@@ -16,7 +16,7 @@ POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" -POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync an USB device?')" "$TITLE" +POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync a USB device?')" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ]; then POL_SetupWindow_message "$(eval_gettext 'Wine does not support USB yet. You will not able to sync your iDevices with $APPLICATION_TITLE. Sorry')" "$TITLE" @@ -28,7 +28,7 @@ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup="$APP_ANSWER" if [ "$(basename "$setup")" = "iTunes64Setup.exe" ]; then - POL_Debug_Fatal "$(eval_gettext 'Please select the 32bit version of iTunes')" + POL_Debug_Fatal "$(eval_gettext 'Please select the 32-bit version of iTunes')" fi POL_System_SetArch "x86" New source code#!/bin/bash # Date : (2009-07-07 19-30) # Last revision : (2013-08-17 19-10) # Wine version used : N/A # Distribution used to test : N/A [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="iTunes 10" PREFIX="iTunes10" POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/itunes/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITRE" "Apple" "http://www.apple.com" "Tinou" "$PREFIX" POL_SetupWindow_question "$(eval_gettext 'Do you want to install $TITLE to sync a USB device?')" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ]; then POL_SetupWindow_message "$(eval_gettext 'Wine does not support USB yet. You will not able to sync your iDevices with $APPLICATION_TITLE. Sorry')" "$TITLE" POL_SetupWindow_Close exit 0 fi cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" setup="$APP_ANSWER" if [ "$(basename "$setup")" = "iTunes64Setup.exe" ]; then POL_Debug_Fatal "$(eval_gettext 'Please select the 32-bit version of iTunes')" fi POL_System_SetArch "x86" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$SITE/divers/QuickTime.qtp" "417f9bf5ec52d3bfa5826b4905658dac" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.4.1" Set_OS winxp POL_Wine_WaitBefore "$TITLE" cd "$WINEPREFIX/drive_c/users" for user in * do cd "$WINEPREFIX/drive_c/users/$user" mkdir -p "Local Settings/Application Data/Apple Computer/QuickTime" cd "Local Settings/Application Data/Apple Computer/QuickTime" mv QuickTime.qtp QuickTime.back cp "$POL_System_TmpDir/QuickTime.qtp" ./ done POL_Call POL_Install_LunaTheme POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$setup" /silent POL_Call POL_Install_gdiplus POL_Shortcut "iTunes.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
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