blob: 2106f64ae8b728bec299e55e06b7b5b672925c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# install rgbds
git clone git://github.com/bentley/rgbds.git && \
cd rgbds && \
make && \
mkdir -p /usr/local/man/man{1,7} && \
make install && \
cd .. && \
rm -rf rgbds
# set up the submodule (extras/)
git submodule init && \
git submodule update && \
easy_install pip && \
pip install -r extras/requirements.txt
|