diff options
author | yenatch <yenatch@gmail.com> | 2013-12-09 05:26:58 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-09 05:48:35 -0500 |
commit | 708df7907f7dd52daea1087e01d5a446293ac7ea (patch) | |
tree | d9e7aa180396b7adf3d9d714878e94df70d1a219 /init.sh | |
parent | 94052ab5b94a8817c62f1d3d06da2e1c9d5be658 (diff) |
rewrite readme and install; init.sh for install
Diffstat (limited to 'init.sh')
-rwxr-xr-x | init.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/init.sh b/init.sh new file mode 100755 index 000000000..43e80c956 --- /dev/null +++ b/init.sh @@ -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" + |