mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 10:23:34 +12:00
init.sh for lazy installs
This commit is contained in:
parent
20c01389cc
commit
81c6bed27d
18
INSTALL.md
18
INSTALL.md
|
@ -12,27 +12,17 @@ Linux dependencies. OSX users already have these after installing Xcode.
|
|||
|
||||
sudo apt-get install make gcc bison git python python-setuptools
|
||||
|
||||
Install **rgbds**, a Game Boy assembler:
|
||||
|
||||
git clone git://github.com/bentley/rgbds.git
|
||||
cd rgbds
|
||||
make
|
||||
sudo make install
|
||||
|
||||
cd ..
|
||||
|
||||
Set up the pokered repository:
|
||||
Set up the **pokered** repository:
|
||||
|
||||
git clone git://github.com/iimarckus/pokered.git
|
||||
cd pokered
|
||||
|
||||
git submodule init
|
||||
git submodule update
|
||||
./init.sh
|
||||
|
||||
sudo easy_install pip
|
||||
pip install -r extras/requirements.txt
|
||||
Copy the Pokémon Red rom to this directory. Name it **baserom.gbc**.
|
||||
|
||||
Put your base rom in the pokered repository. Name it "baserom.gbc".
|
||||
Now **pokered.gbc** can be built from source.
|
||||
|
||||
make red
|
||||
|
||||
|
|
16
init.sh
Executable file
16
init.sh
Executable file
|
@ -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
|
||||
|
Loading…
Reference in a new issue