mirror of https://github.com/pret/pokecrystal.git
20 lines
376 B
Bash
20 lines
376 B
Bash
|
#!/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"
|
||
|
|