From 7d11815897ffc955b464bf2cedd40b2b7a83bd6a Mon Sep 17 00:00:00 2001 From: GewoonLeon Date: Sat, 27 Jan 2024 21:47:29 +0100 Subject: [PATCH 1/2] Switch around Wii and 3DS dkp-pacman commands --- docs/Compiling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Compiling.md b/docs/Compiling.md index 02ade50..1b796bf 100644 --- a/docs/Compiling.md +++ b/docs/Compiling.md @@ -36,7 +36,7 @@ If all goes well, `appstore.rpx` should be sitting in the current directory. 1. Install [dkp-pacman](https://devkitpro.org/viewtopic.php?f=13&t=8702) 2. Install devkitARM and needed 3DS dependencies via dkp-pacman: ``` -sudo dkp-pacman --noconfirm -S devkitPPC libogc gamecube-tools ppc-zlib ppc-bzip2 ppc-freetype ppc-mpg123 ppc-libpng ppc-pkg-config ppc-libvorbisidec ppc-libjpeg-turbo libfat-ogc +sudo dkp-pacman -S 3ds-sdl 3ds-sdl_image 3ds-sdl_mixer 3ds-sdl_gfx 3ds-sdl_ttf libctru citro3d 3dstools 3ds-curl 3ds-mbedtls ``` 3. *If on macOS*: install gtar with: `brew install gnu-tar` (needed by resinfs) 4. Once it's all setup, recursively clone the repo and run make: @@ -52,7 +52,7 @@ If all goes well, `appstore.3dsx` should be sitting in the current directory. 1. Install [dkp-pacman](https://devkitpro.org/viewtopic.php?f=13&t=8702) 2. Install devkitPPC and needed Wii dependencies via dkp-pacman: ``` -sudo dkp-pacman -S 3ds-sdl 3ds-sdl_image 3ds-sdl_mixer 3ds-sdl_gfx 3ds-sdl_ttf libctru citro3d 3dstools 3ds-curl 3ds-mbedtls +sudo dkp-pacman --noconfirm -S devkitPPC libogc gamecube-tools ppc-zlib ppc-bzip2 ppc-freetype ppc-mpg123 ppc-libpng ppc-pkg-config ppc-libvorbisidec ppc-libjpeg-turbo libfat-ogc ``` 3. *If on macOS*: install gtar with: `brew install gnu-tar` (needed by resinfs) 4. Once it's all setup, recursively clone the repo and run make: From 5b4ab82e34d7ed6d9e78a389c0abd263c4506dd5 Mon Sep 17 00:00:00 2001 From: GewoonLeon Date: Sat, 27 Jan 2024 21:48:56 +0100 Subject: [PATCH 2/2] Remove --noconfirm --- docs/Compiling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Compiling.md b/docs/Compiling.md index 1b796bf..44f20c1 100644 --- a/docs/Compiling.md +++ b/docs/Compiling.md @@ -52,7 +52,7 @@ If all goes well, `appstore.3dsx` should be sitting in the current directory. 1. Install [dkp-pacman](https://devkitpro.org/viewtopic.php?f=13&t=8702) 2. Install devkitPPC and needed Wii dependencies via dkp-pacman: ``` -sudo dkp-pacman --noconfirm -S devkitPPC libogc gamecube-tools ppc-zlib ppc-bzip2 ppc-freetype ppc-mpg123 ppc-libpng ppc-pkg-config ppc-libvorbisidec ppc-libjpeg-turbo libfat-ogc +sudo dkp-pacman -S devkitPPC libogc gamecube-tools ppc-zlib ppc-bzip2 ppc-freetype ppc-mpg123 ppc-libpng ppc-pkg-config ppc-libvorbisidec ppc-libjpeg-turbo libfat-ogc ``` 3. *If on macOS*: install gtar with: `brew install gnu-tar` (needed by resinfs) 4. Once it's all setup, recursively clone the repo and run make: