EASy68K

Informations

Créateur Messages
SWW13 Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 8810
Wine: 4.0.4

Retours d'expérience

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 

Code source

#!/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:

Contribuer
Membre Messages
Dadu042 Samedi 12 Juin 2021 à 22:19
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

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"
 

Nouveau code source

#!/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

Réponses

ManuelV Mardi 5 Mai 2015 à 16:24
ManuelV Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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"

Nouveau code source

#!/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

Réponses

Mardi 5 Mai 2015 à 19:04
fixed
SWW13 Mardi 28 Avril 2015 à 19:04
SWW13 Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

#!/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

Réponses

Mardi 28 Avril 2015 à 19:39
I suppose line 36 should be in the if branch just above?
Anonymous
Mardi 28 Avril 2015 à 19:42
yep, thx

Edité par SWW13