shithub: pokecrystal

Download patch

ref: 9b71315d7b42da07b6c5104a93f4f5ca9702a5fb
parent: 34c8cb8077335048ada7df6a5aa5934ce30c7575
parent: 3d3208425e8c66190d69431ae3d8dfa1d0d5d846
author: Bryan Bishop <[email protected]>
date: Wed Jul 10 11:35:46 EDT 2013

Merge pull request #156 from yenatch/cygwin-install

More cygwin installation instructions.

--- a/INSTALL.md
+++ b/INSTALL.md
@@ -28,7 +28,9 @@
 
 * Most mirrors are molasses. Use **http://mirrors.kernel.org**.
 
+* From the package selection, select **wget**.
 
+
 ## Using Cygwin
 
 Launch the **Cygwin terminal**. Maybe you know your way around the Linux terminal, **bash**. If not, a crash course:
@@ -48,31 +50,38 @@
 
 We need a couple more things to be able to compile.
 
+
 If you're feeling lazy, just paste these commands into your terminal.
 
+
+**apt-cyg** lets you install new packages without running Cygwin setup.
+
 ```bash
-apt-cyg install make git wget python python-setuptools
-easy_install pip
+wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
+chmod +x apt-cyg
+mv apt-cyg /usr/local/bin/
 ```
 
-**rgbds** will let you compile Game Boy roms.
+Now we can use apt-cyg to install everything else.
 
 ```bash
-cd ~
+apt-cyg install make git python python-setuptools unzip
+easy_install pip
+```
 
-# download rgbds binaries
-wget http://diyhpl.us/~bryan/irc/pokered/rgbds/rgbds.zip
-unzip rgbds.zip
-rm rgbds.zip
+**rgbds** will let you compile Game Boy roms.
 
-# make rgbds accessible for all time
-export PATH=$PATH:`pwd`/rgbds
-echo "export PATH=$PATH" >> ~/.bashrc
+```bash
+wget http://diyhpl.us/~bryan/irc/pokered/rgbds/rgbds-0.0.1.zip
+unzip rgbds-0.0.1.zip
+mv rgbds-0.0.1/* /usr/local/bin
+rm -r rgbds-0.0.1*
 ```
 
 Set up the **pokecrystal** repository:
 
 ```bash
+cd ~
 git clone https://github.com/kanzure/pokecrystal
 cd pokecrystal