mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-22 10:04:31 -05:00
43 lines
1.9 KiB
Bash
43 lines
1.9 KiB
Bash
#!/bin/sh
|
|
#---------------------------------------------------------------------------------
|
|
# variables for unattended script execution
|
|
#---------------------------------------------------------------------------------
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Select package
|
|
#---------------------------------------------------------------------------------
|
|
# 0: User selects manually
|
|
# 1: devkitARM
|
|
# 2: devkitPPC
|
|
# 3: devkitPSP
|
|
#---------------------------------------------------------------------------------
|
|
BUILD_DKPRO_PACKAGE=0
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Download source packages
|
|
#---------------------------------------------------------------------------------
|
|
# 0: User selects manually
|
|
# 1: already downloaded
|
|
# 2: download packages
|
|
#---------------------------------------------------------------------------------
|
|
BUILD_DKPRO_DOWNLOAD=0
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Toolchain installation directory, comment if not specified
|
|
#---------------------------------------------------------------------------------
|
|
#BUILD_DKPRO_INSTALLDIR=/opt/devkitpro
|
|
#BUILD_DKPRO_INSTALLDIR=c:/devkitPro
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Path to previously downloaded source packages, comment if not specified
|
|
#---------------------------------------------------------------------------------
|
|
#BUILD_DKPRO_SRCDIR=/d/projects/archives
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# Automated script execution
|
|
#---------------------------------------------------------------------------------
|
|
# 0: Ask to delete build folders & patched sources
|
|
# 1: Use defaults, don't pause for answers
|
|
#---------------------------------------------------------------------------------
|
|
BUILD_DKPRO_AUTOMATED=0
|