mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
22 lines
449 B
Bash
Executable File
22 lines
449 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# install rgbds
|
|
git clone git://github.com/bentley/rgbds.git && \
|
|
cd rgbds && \
|
|
make && \
|
|
mkdir -p /usr/local/man/man1 && \
|
|
mkdir -p /usr/local/man/man7 && \
|
|
sudo make install && \
|
|
cd .. && \
|
|
rm -rf rgbds
|
|
|
|
# set up the submodule (extras/)
|
|
git submodule init && \
|
|
git submodule update && \
|
|
sudo easy_install pip && \
|
|
sudo pip install -r extras/requirements.txt
|
|
|
|
# diff binary files using hexdump
|
|
git config diff.hex.textconv "hexdump -C"
|
|
|