Advertisement
Lunos

Building Pokeruby/Pokeemerald using dkP's MSys2 for Windows

Aug 29th, 2019
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. | - Instructions - |
  2. 1) Download and install devkitPro. You can find it right here: https://github.com/devkitPro/installer/releases
  3. 2) Open C:\devkitPro\msys2\msys2_shell.bat and type the following command: pacman -S make gcc zlib-devel git
  4. 3) Download libpng from here: https://sourceforge.net/projects/libpng/files/libpng16/1.6.34/libpng-1.6.34.tar.gz/download
  5. 4) Uncompress that folder and use the "cd" command on Msys, followed by the path to your uncompresserd libpng-1.6.34 folder.
  6. 5) Type the following commands in order:
  7. * ./configure --prefix=/usr
  8. * make check
  9. * make install
  10. 6) Type cd to go back to your Home folder and then just use the following commands in order:
  11. * git clone https://github.com/pret/agbcc
  12. * git clone https://github.com/pret/pokeruby
  13. * cd pokeruby
  14. * make -jN
  15.  
  16. Note: You can create an Environment Variable called "HOME" and give it a desired folder path, to change the Home folder that MSys uses.
  17. Example: https://media.discordapp.net/attachments/419214240277200898/616829207879745569/SystemPropertiesAdvanced-2019-08-29_19-58-40.png
  18. By default, MSys will use your User Account's folder found in C:\Users to store stuff.
  19.  
  20. | - Credits - |
  21. UltimaSoul: I didn't know that I needed the zlib-devel package, and he also told me how to get libpng to work with MSys2.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement