summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-07-10 15:35:46 -0700
committerBryan Bishop <kanzure@gmail.com>2013-07-10 15:35:46 -0700
commit9b71315d7b42da07b6c5104a93f4f5ca9702a5fb (patch)
treebcc33d7784c7bd2d2a63e37c6b8288ce7b546ad1
parent34c8cb8077335048ada7df6a5aa5934ce30c7575 (diff)
parent3d3208425e8c66190d69431ae3d8dfa1d0d5d846 (diff)
Merge pull request #156 from yenatch/cygwin-install
More cygwin installation instructions.
-rw-r--r--INSTALL.md31
1 files changed, 20 insertions, 11 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 68d5c09b8..50b180c9a 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -28,6 +28,8 @@ During the install:
* Most mirrors are molasses. Use **http://mirrors.kernel.org**.
+* From the package selection, select **wget**.
+
## Using Cygwin
@@ -48,31 +50,38 @@ cd /away/we/go
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