summaryrefslogtreecommitdiff
path: root/init.sh
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-12-08 21:40:18 -0500
committeryenatch <yenatch@gmail.com>2013-12-08 21:43:39 -0500
commit81c6bed27d4251c90ebff8475398c69e22781966 (patch)
tree4fb8521c23e2fa6f1b526220e2bbcb7045e67073 /init.sh
parent20c01389cc8b5cbea59796ee0825fcd877c15fef (diff)
init.sh for lazy installs
Diffstat (limited to 'init.sh')
-rwxr-xr-xinit.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/init.sh b/init.sh
new file mode 100755
index 00000000..a0cc1ccd
--- /dev/null
+++ b/init.sh
@@ -0,0 +1,16 @@
+#!/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
+