EASy68K

Informations

Creator Message
SWW13 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 8771
Wine: 4.0.4

Feedbacks

Description

EASy68K 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.

Appdb.winehq.org 

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:

Contribute
Member Message
Dadu042 Saturday 12 June 2021 at 22:19
Dadu042

Information

This 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 Anonymous

Warning

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

Message

The "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

Replies

Tuesday 5 May 2015 at 19:04
fixed
SWW13 Tuesday 28 April 2015 at 19:04
SWW13 Anonymous

Warning

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

Message

a 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

Replies

Tuesday 28 April 2015 at 19:39
I suppose line 36 should be in the if branch just above?
Anonymous
Tuesday 28 April 2015 at 19:42
yep, thx

Edited by SWW13