rewrite readme and install; init.sh for install

This commit is contained in:
yenatch
2013-12-09 05:26:58 -05:00
parent 94052ab5b9
commit 708df7907f
3 changed files with 49 additions and 188 deletions

19
init.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
# install rgbds
git clone git://github.com/bentley/rgbds.git && \
cd rgbds && \
make && \
sudo make install && \
cd .. && \
rm -rf rgbds
# set up the submodule (extras/)
git submodule init && \
git submodule update && \
sudo easy_install pip && \
pip install -r extras/requirements.txt
# diff binary files using hexdump
git config diff.hex.textconv "hexdump -C"