Merge pull request #507 from hackgrid/fix-readme-5

update readme for building from Ubuntu 23.04 on
This commit is contained in:
lambertjamesd 2023-11-28 12:52:33 -07:00 committed by GitHub
commit 84f2590564
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,12 +58,21 @@ export BLENDER_3_6="/usr/bin/blender"
<br /> <br />
You will need to install Python `vpk` You will need to install Python `vpk`:
Up to Ubuntu 22.04:
```sh ```sh
pip install vpk pip install vpk
``` ```
From Ubuntu 23.04 on you need to do instead:
```sh
pipx ensurepath
pipx install vpk
```
<br /> <br />
Setup and install dependencies for `skeletool64` Setup and install dependencies for `skeletool64`
@ -220,6 +229,15 @@ Then build the rom using
make -f Makefile.docker make -f Makefile.docker
``` ```
You can also use the language options, e.g.:
```sh
make -f Makefile.docker spanish_audio
make -f Makefile.docker german_audio
make -f Makefile.docker
```
That will generate the rom at `/build/portal64.z64` That will generate the rom at `/build/portal64.z64`
<br /> <br />