From 16430217ff1aa545d59738830613f267c81d120a Mon Sep 17 00:00:00 2001 From: James Elliott Date: Tue, 2 Apr 2019 11:35:10 +1100 Subject: [PATCH] Add additional dependency information (#495) - individually listed packages required when using (dkp-)packman. - added sept dependencies - added requirement to use -r flag - added recommendation for zip (for use if someone wants to make dist) --- docs/building.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/building.md b/docs/building.md index 47d230b8a..1a6de7624 100644 --- a/docs/building.md +++ b/docs/building.md @@ -1,6 +1,8 @@ # Building Atmosphère The process for building Atmosphère is similar to building Fusée Gelée payloads and other Switch apps. -In order to build Atmosphère you must have devkitARM and devkitA64 installed on your computer. You can find instructions on how to install and setup devkitARM and devkitA64 on various OSes [here](https://devkitpro.org/wiki/Getting_Started). +In order to build Atmosphère you must have devkitARM and devkitA64 installed on your computer. You can find instructions on how to install and setup devkitARM and devkitA64 on various OSes [here](https://devkitpro.org/wiki/Getting_Started). If you're using pacman or dkp-pacman you'll need to install the following packages: devkitARM devkitarm-rules devkitA64 general-tools switch-tools libnx switch-freetype -Once you have finished installing devkitARM and devkitA64, simply clone the Atmosphère repo, change to it and run `make`. +sept requires you have python installed with the pycrypto and pycryptodome PyPi packages (pip install pycrypto pycryptodome). You may also want to install the zip package from your package manager of choice to support the `make dist` recipe. + +Once you have finished installing devkitPro, python, and the dependencies, simply clone the Atmosphère repo (clone with the -r flag), change your directory to it and run `make`.