mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-13 05:16:07 -05:00
18 lines
563 B
Bash
Executable File
18 lines
563 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# set env variables
|
|
#---------------------------------------------------------------------------------
|
|
export DEVKITPRO=$TOOLPATH
|
|
export DEVKITPPC=$DEVKITPRO/devkitPPC
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the rules files
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
mkdir -p rules
|
|
cd rules
|
|
tar -xvf $SRCDIR/devkitppc-rules-$DKPPC_RULES_VER.tar.xz
|
|
make install
|