summarylogtreecommitdiffstats
path: root/modulefile_ps3toolchain
blob: 49aaea4518a3c6682a463317086e5a21ae8b3b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#%Module1.0
#
# Created by Darjan Krijan [https://disc-kuraudo.eu]
#

set MODULE          "ps3toolchain"
set BASE_DIR        "/opt/ps3dev"
set VERSION         "20230409"
set PS3TC_ROOT      "${BASE_DIR}"
set PS3TC_TEXT      "Tools used in the creation of homebrew software for the Sony PlayStation 3 videogame system."

setenv        PS3DEV           ${PS3TC_ROOT}
setenv        PSL1GHT          ${PS3TC_ROOT}
prepend-path  PATH             ${PS3TC_ROOT}/bin
prepend-path  PATH             ${PS3TC_ROOT}/ppu/bin
prepend-path  PATH             ${PS3TC_ROOT}/spu/bin

module-whatis  "${PS3TC_TEXT} version ${VERSION}"

proc ModulesHelp {} {
	global PS3TC_TEXT
	puts stderr "This module sets up the environment for ${PS3TC_TEXT}"
	puts stderr "by adapting the following environment variables:"
	puts stderr "PS3DEV, PSL1GHT, PATH"
}