2018-06-08 17:59:40 +00:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
2018-06-20 13:48:56 +00:00
|
|
|
Arch Linux
|
2018-06-08 17:59:40 +00:00
|
|
|
```bash
|
2018-06-20 13:48:56 +00:00
|
|
|
pacman -S mingw-w64-gcc mingw-w64-binutils
|
2018-06-08 17:59:40 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/galaxyhaxz/devilution
|
|
|
|
cd devilution
|
|
|
|
cp /path/to/diablo_game_dir/diabloui.dll .
|
|
|
|
cp /path/to/diablo_game_dir/storm.dll .
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
2018-06-20 13:48:56 +00:00
|
|
|
On a 32-bit host, `$ make MINGW32=mingw32` should be used, to specify the 32-bit
|
|
|
|
toolchain.
|
|
|
|
|
2018-06-08 17:59:40 +00:00
|
|
|
## Install
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cp devilution.exe /path/to/diablo_game_dir/
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run
|
|
|
|
|
|
|
|
```bash
|
|
|
|
wine devilution.exe
|
|
|
|
```
|