summaryrefslogtreecommitdiff
path: root/init.sh
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-09 05:26:58 -0500
committeryenatch <yenatch@gmail.com>2013-12-09 05:48:35 -0500
commit708df7907f7dd52daea1087e01d5a446293ac7ea (patch)
treed9e7aa180396b7adf3d9d714878e94df70d1a219 /init.sh
parent94052ab5b94a8817c62f1d3d06da2e1c9d5be658 (diff)
rewrite readme and install; init.sh for install
Diffstat (limited to 'init.sh')
-rwxr-xr-xinit.sh19
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"
+