LEGO Island
This commit is contained in:
parent
ac265dbf9c
commit
5831a45bdd
5 changed files with 29 additions and 0 deletions
3
LEGO Island/.gitignore
vendored
Normal file
3
LEGO Island/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
bin
|
||||||
|
iso
|
||||||
|
wine
|
6
LEGO Island/README.md
Normal file
6
LEGO Island/README.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#### Lego Island
|
||||||
|
|
||||||
|
Store the Lego Island iso into the `bin` folder and name it `game.iso`.
|
||||||
|
Then run `setup`.
|
||||||
|
|
||||||
|
> Note: broken
|
5
LEGO Island/env
Executable file
5
LEGO Island/env
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
export WINEPREFIX="$(pwd)/wine"
|
||||||
|
export WINEARCH=win64
|
||||||
|
export WINEESYNC=1
|
5
LEGO Island/run
Executable file
5
LEGO Island/run
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
source ./env
|
||||||
|
|
||||||
|
cd 'wine/drive_c/Program Files (x86)/LEGO Island/' && wine 'ISLE.EXE'
|
10
LEGO Island/setup
Executable file
10
LEGO Island/setup
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
source ./env
|
||||||
|
rm -fr ./iso
|
||||||
|
mkdir ./iso
|
||||||
|
7z x ./bin/game.iso -oiso
|
||||||
|
winetricks winxp
|
||||||
|
wine ./iso/setup.exe
|
||||||
|
#cp ../dxvk/x32/*.dll ./wine/drive_c/windows/system32
|
||||||
|
#cp ../dxvk/x64/*.dll ./wine/drive_c/windows/syswow64
|
Loading…
Reference in a new issue