diff options
| author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-12-10 14:08:08 -0500 |
|---|---|---|
| committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-12-10 14:08:08 -0500 |
| commit | 4e530306781ccebf483dd86c39bd53bd4ca97fbd (patch) | |
| tree | 034ae854a665d13ea2771c6d7998ab1ea8f641fa /init.sh | |
| parent | Misc clean up (diff) | |
| parent | Use safer and more standard POSIX find options. (diff) | |
| download | pokeyellow-4e530306781ccebf483dd86c39bd53bd4ca97fbd.tar.gz pokeyellow-4e530306781ccebf483dd86c39bd53bd4ca97fbd.tar.xz pokeyellow-4e530306781ccebf483dd86c39bd53bd4ca97fbd.zip | |
Merge branch 'master' of https://github.com/iimarckus/pokered
Conflicts:
main.asm
Diffstat (limited to 'init.sh')
| -rwxr-xr-x | init.sh | 16 |
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 + |
