EASy68K
Informations
Creator | Message |
---|---|
SWW13
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks1 0 DescriptionEASy68K is a 68000 Structured Assembly Language IDE. EASy68K allows you to edit, assemble and run 68000 programs on a Windows PC or Wine. No additional hardware is required. EASy68K is an open source project distributed under the GNU general public use license. Website. Source code#!/bin/bash # Date : (2015-04-28 17-45) # Last revision : (2015-04-28 17-45) # Distribution used to test : OS X 10.10.3 # Author : Simon Wörner # Script licence : GPLv3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="EASy68K" WORKING_WINE_VERSION="4.0.4" PREFIX="EASy68K" DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" POL_SetupWindow_Init POL_Debug_Init POL_System_TmpCreate "$PREFIX" POL_SetupWindow_presentation "$TITLE" "EASy68K Team" "http://www.easy68k.com/" "Simon Wörner" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the EASy68K.zip file to install')" "$TITLE" INSTALL_FILE="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_LINK" INSTALL_FILE="$POL_System_TmpDir/EASy68K.zip" else POL_Debug_Fatal "Unknown install method." fi unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/License.txt" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" mv "$POL_System_TmpDir/EASy68K" "$WINEPREFIX/drive_c/EASy68K" INSTALL_PATH="$WINEPREFIX/drive_c/EASy68K/" POL_Shortcut "EDIT68K.exe" "Edit68K Editor Assembler" POL_Shortcut "EASyBIN.exe" "EASyBIN" POL_Shortcut "SIM68K.exe" "Sim68K Simulator" POL_Shortcut_Document "Edit68K Editor Assembler" "readme.txt" POL_System_TmpDelete POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Saturday 12 June 2021 at 22:19 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -9,7 +9,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="EASy68K" -WORKING_WINE_VERSION="1.7.41" +WORKING_WINE_VERSION="4.0.4" PREFIX="EASy68K" DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" New source code#!/bin/bash # Date : (2015-04-28 17-45) # Last revision : (2015-04-28 17-45) # Distribution used to test : OS X 10.10.3 # Author : Simon Wörner # Script licence : GPLv3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="EASy68K" WORKING_WINE_VERSION="4.0.4" PREFIX="EASy68K" DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" POL_SetupWindow_Init POL_Debug_Init POL_System_TmpCreate "$PREFIX" POL_SetupWindow_presentation "$TITLE" "EASy68K Team" "http://www.easy68k.com/" "Simon Wörner" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the EASy68K.zip file to install')" "$TITLE" INSTALL_FILE="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_LINK" INSTALL_FILE="$POL_System_TmpDir/EASy68K.zip" else POL_Debug_Fatal "Unknown install method." fi unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/License.txt" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" mv "$POL_System_TmpDir/EASy68K" "$WINEPREFIX/drive_c/EASy68K" INSTALL_PATH="$WINEPREFIX/drive_c/EASy68K/" POL_Shortcut "EDIT68K.exe" "Edit68K Editor Assembler" POL_Shortcut "EASyBIN.exe" "EASyBIN" POL_Shortcut "SIM68K.exe" "Sim68K Simulator" POL_Shortcut_Document "Edit68K Editor Assembler" "readme.txt" POL_System_TmpDelete POL_SetupWindow_Close exit Replies |
ManuelV | Tuesday 5 May 2015 at 16:24 |
ManuelV
|
WarningThis update has not been approved yet by the team. MessageThe "no cd" flag is incorrectly set. This program doesn't need a no cd crack to run. Differences@@ -37,8 +37,7 @@ fi unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" -cat "$POL_System_TmpDir/EASy68K/Licence.txt" -POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/Licence.txt" # the function is a lie +POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/License.txt" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" New source code#!/bin/bash # Date : (2015-04-28 17-45) # Last revision : (2015-04-28 17-45) # Distribution used to test : OS X 10.10.3 # Author : Simon Wörner # Script licence : GPLv3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="EASy68K" WORKING_WINE_VERSION="1.7.41" PREFIX="EASy68K" DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" POL_SetupWindow_Init POL_Debug_Init POL_System_TmpCreate "$PREFIX" POL_SetupWindow_presentation "$TITLE" "EASy68K Team" "http://www.easy68k.com/" "Simon Wörner" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the EASy68K.zip file to install')" "$TITLE" INSTALL_FILE="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_LINK" INSTALL_FILE="$POL_System_TmpDir/EASy68K.zip" else POL_Debug_Fatal "Unknown install method." fi unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/License.txt" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" mv "$POL_System_TmpDir/EASy68K" "$WINEPREFIX/drive_c/EASy68K" INSTALL_PATH="$WINEPREFIX/drive_c/EASy68K/" POL_Shortcut "EDIT68K.exe" "Edit68K Editor Assembler" POL_Shortcut "EASyBIN.exe" "EASyBIN" POL_Shortcut "SIM68K.exe" "Sim68K Simulator" POL_Shortcut_Document "Edit68K Editor Assembler" "readme.txt" POL_System_TmpDelete POL_SetupWindow_Close exit RepliesTuesday 5 May 2015 at 19:04
|
SWW13 | Tuesday 28 April 2015 at 19:04 |
SWW13
|
WarningThis update has not been approved yet by the team. Messagea source code field in the submit form would be awesome... Differences@@ -0,0 +1,57 @@ +#!/bin/bash +# Date : (2015-04-28 17-45) +# Last revision : (2015-04-28 17-45) +# Distribution used to test : OS X 10.10.3 +# Author : Simon Wörner +# Script licence : GPLv3 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="EASy68K" +WORKING_WINE_VERSION="1.7.41" +PREFIX="EASy68K" +DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_presentation "$TITLE" "EASy68K Team" "http://www.easy68k.com/" "Simon Wörner" "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the EASy68K.zip file to install')" "$TITLE" + INSTALL_FILE="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "$DOWNLOAD_LINK" + INSTALL_FILE="$POL_System_TmpDir/EASy68K.zip" +else + POL_Debug_Fatal "Unknown install method." +fi + +unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" +cat "$POL_System_TmpDir/EASy68K/Licence.txt" +POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/Licence.txt" # the function is a lie + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +mv "$POL_System_TmpDir/EASy68K" "$WINEPREFIX/drive_c/EASy68K" +INSTALL_PATH="$WINEPREFIX/drive_c/EASy68K/" + +POL_Shortcut "EDIT68K.exe" "Edit68K Editor Assembler" +POL_Shortcut "EASyBIN.exe" "EASyBIN" +POL_Shortcut "SIM68K.exe" "Sim68K Simulator" + +POL_Shortcut_Document "Edit68K Editor Assembler" "readme.txt" + +POL_System_TmpDelete +POL_SetupWindow_Close +exit New source code#!/bin/bash # Date : (2015-04-28 17-45) # Last revision : (2015-04-28 17-45) # Distribution used to test : OS X 10.10.3 # Author : Simon Wörner # Script licence : GPLv3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="EASy68K" WORKING_WINE_VERSION="1.7.41" PREFIX="EASy68K" DOWNLOAD_LINK="http://www.easy68k.com/files/EASy68K.zip" POL_SetupWindow_Init POL_Debug_Init POL_System_TmpCreate "$PREFIX" POL_SetupWindow_presentation "$TITLE" "EASy68K Team" "http://www.easy68k.com/" "Simon Wörner" "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the EASy68K.zip file to install')" "$TITLE" INSTALL_FILE="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_LINK" INSTALL_FILE="$POL_System_TmpDir/EASy68K.zip" else POL_Debug_Fatal "Unknown install method." fi unzip "$INSTALL_FILE" -d "$POL_System_TmpDir/" cat "$POL_System_TmpDir/EASy68K/Licence.txt" POL_SetupWindow_licence "Licence:" "$TITLE" "$POL_System_TmpDir/EASy68K/Licence.txt" # the function is a lie POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" mv "$POL_System_TmpDir/EASy68K" "$WINEPREFIX/drive_c/EASy68K" INSTALL_PATH="$WINEPREFIX/drive_c/EASy68K/" POL_Shortcut "EDIT68K.exe" "Edit68K Editor Assembler" POL_Shortcut "EASyBIN.exe" "EASyBIN" POL_Shortcut "SIM68K.exe" "Sim68K Simulator" POL_Shortcut_Document "Edit68K Editor Assembler" "readme.txt" POL_System_TmpDelete POL_SetupWindow_Close exit RepliesEdited by SWW13 |
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