- Visual Studio Code
- VICE (GTK Version)
- Wine Crossover
brew install --cask --no-quarantine gcenx/wine/wine-crossover
- 64tass
brew install tass64
- SpritePad (See below for setup details)
- CharPad (See below for setup details)
- Sidreloc (See below for setup details)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on run | |
set toRun to "$HOME/.wine/drive_c/Program Files/SpritePad v2b1/SpritePad.exe" | |
set winePrefix to "$HOME/.wine" | |
set wineLocation to "/usr/local/bin" | |
set dyldFallbackLibraryPath to "/opt/X11/lib" | |
set freetypefix to "truetype:interpreter-version=35" | |
set toRunPath to do shell script "WINEPREFIX=\"" & winePrefix & "\"; TEMPVAR=\"" & toRun & "\"; echo \"${TEMPVAR%/*}\"" | |
set toRunFile to do shell script "WINEPREFIX=\"" & winePrefix & "\"; TEMPVAR=\"" & toRun & "\"; TEMPVAR2=\"" & toRunPath & "\"; echo \"${TEMPVAR#$TEMPVAR2/}\"" | |
do shell script "PATH=\"" & wineLocation & ":$PATH\"; export WINEPREFIX=\"" & winePrefix & "\"; export DYLD_FALLBACK_LIBRARY_PATH=\"" & dyldFallbackLibraryPath & "\"; export FREETYPE_PROPERTIES=\"" & freetypefix & "\"; cd \"" & toRunPath & "\"; wine \"" & toRunFile & "\" > /dev/null 2>&1 &" | |
end run |