diff options
| author | iimarckus <iimarckus@gmail.com> | 2013-12-09 21:23:19 -0800 |
|---|---|---|
| committer | iimarckus <iimarckus@gmail.com> | 2013-12-09 21:23:19 -0800 |
| commit | f17320d7a835709da4c991e0e67300d001ffc53c (patch) | |
| tree | 9dc5044efa04fd16baf25c0ca0c43a68409dee61 /init.sh | |
| parent | IshiharaTeam (diff) | |
| parent | makefile: find -delete isnt portable (diff) | |
| download | pokeyellow-f17320d7a835709da4c991e0e67300d001ffc53c.tar.gz pokeyellow-f17320d7a835709da4c991e0e67300d001ffc53c.tar.xz pokeyellow-f17320d7a835709da4c991e0e67300d001ffc53c.zip | |
Merge pull request #19 from yenatch/crystal-makefile
bring pokered into this century
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 + |
