blob: 3e8ce24f8d68024fedb398f851207f16b726b520 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Darjan Krijan [https://disc-kuraudo.eu]
_pkgname="psl1ght"
pkgname="ps3-${_pkgname}"
pkgver="20230214"
pkgrel=3
pkgdesc="PSL1GHT lightweight PS3 GameOS SDK"
arch=(x86_64 aarch64 powerpc64le powerpc64 powerpc riscv64)
url='https://github.com/ps3dev'
license=(MIT)
depends=(
ps3-env
ps3-ppu-binutils
ps3-ppu-gcc
ps3-spu-binutils
ps3-spu-gcc
)
options=(!emptydirs !strip staticlibs)
source=(
"git+https://github.com/ps3dev/PSL1GHT.git#commit=0f7ab5e4967ef0df877dd10f080b0ca771eac023"
)
sha256sums=(
'SKIP'
)
source /opt/ps3dev/ps3toolchain.sh
prepare() {
cd "${srcdir}/PSL1GHT"
# Weird different internal compiler errors with Os/O2/O3, only O1 works
sed -e "s/-O2/-O1/g" -i ppu/librsx/Makefile
}
build() {
cd "${srcdir}/PSL1GHT"
# Fake PSL1GHT variable to source to make it find *_rules files,
# this skips a separate '-rules' package with 'make install-ctrl'
# that would put them in /opt/ps3dev
PSL1GHT="${PWD}" make
}
package() {
mkdir -p "${pkgdir}${PS3DEV}/ppu"
cd "${pkgdir}${PS3DEV}/ppu"
mkdir powerpc64-ps3-elf
ln -s powerpc64-ps3-elf ppu
mkdir -p ppu/lib # ppu/crt/Makefile install rule doesn't create this
cd "${srcdir}/PSL1GHT"
# Special needs Makefile with no support for DESTDIR.
# Need to play around with both PSL1GHT and PS3DEV variables,
make PS3DEV="${pkgdir}${PS3DEV}" PSL1GHT="${pkgdir}${PSL1GHT}" install-ctrl install
unlink "${pkgdir}${PS3DEV}/ppu/ppu"
}
|