From b2c93f2f84ebb31afd5afce0b5a19d89be0ed39e Mon Sep 17 00:00:00 2001 From: Aep <86505664+Aeplexi@users.noreply.github.com> Date: Tue, 5 Nov 2024 17:19:19 -0500 Subject: [PATCH] Add universe repository, needed for newer ubuntu versions --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e708a8b8..0083ec99 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,11 @@ This repo does not include all assets necessary for compiling the ROMs. A prior copy of the game is required to extract the assets. ## Quick Start (for Ubuntu) - -1. Install prerequisites: `sudo apt install -y binutils-mips-linux-gnu build-essential git pkgconf python3` +1. Install prerequisites: +``` +sudo add-apt-repository universe +sudo apt install -y binutils-mips-linux-gnu build-essential git pkgconf python3 +``` 2. Clone the repo from within Linux: `git clone https://github.com/n64decomp/sm64.git` 3. Place a Super Mario 64 ROM called `baserom..z64` into the project folder for asset extraction, where `VERSION` can be `jp`, `us`, `eu`, `sh`, or `cn`. 4. Run `make` to build. Specify the version through `make VERSION=`. Add `-j4` to improve build speed (hardware dependent).