mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-22 10:27:25 -05:00
16 lines
537 B
Bash
16 lines
537 B
Bash
#!/bin/sh
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# set env variables
|
|
#---------------------------------------------------------------------------------
|
|
export DEVKITPRO=$TOOLPATH
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Install the rules files
|
|
#---------------------------------------------------------------------------------
|
|
cd $BUILDDIR
|
|
|
|
tar -xvf $SRCDIR/devkita64-rules-$DKA64_RULES_VER.tar.gz
|
|
cd devkita64-rules-$DKA64_RULES_VER
|
|
make install
|