Skip to content

Commit 5236059

Browse files
committed
fixes
1 parent 59db3ea commit 5236059

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
- name: Build Polarssl 1.3.9
151151
run: ./libraries.sh 017
152152

153-
- name: Build Libcurl 7.64.1
153+
- name: Build MbedTLS 2.28.10
154154
run: ./libraries.sh 018
155155

156156
- name: Build Libmad 0.15.1b
@@ -180,7 +180,7 @@ jobs:
180180
- name: Build Tiny3d_libfont
181181
run: ./libraries.sh 027
182182

183-
- name: Build MbedTLS 2.28.10
183+
- name: Build Libcurl 7.64.1
184184
run: ./libraries.sh 028
185185

186186
- name: Build Libunrar
@@ -192,6 +192,9 @@ jobs:
192192
- name: Build Libsmb2
193193
run: ./libraries.sh 031
194194

195+
- name: Build Pthread-emb
196+
run: ./libraries.sh 032
197+
195198
- name: Build Package
196199
run: |
197200
cd $PSL1GHT

scripts/029-libunrar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ cd libunrar
1717

1818
## Compile and install.
1919
jobs=$(nproc 2>/dev/null || sysctl -n hw.ncpu)
20-
${MAKE:-make} -j"$jobs"
20+
${MAKE:-make} -j"$jobs" install

scripts/032-pthread-emb.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
1-
#!/bin/sh -e
2-
#
1+
#!/usr/bin/env bash
2+
set -eo pipefail
33
# pthread-emb ps3 library
44

5+
## Source util functions
6+
source ../utils/utils.sh
7+
58
## Download the source code.
69
../download.sh pthread-emb-ps3.tar.gz
710

811
## Unpack the source code.
9-
rm -Rf pthread-emb-ps3 && mkdir pthread-emb-ps3 && tar --strip-components=1 --directory=pthread-emb-ps3 -xvzf ../archives/pthread-emb-ps3.tar.gz && cd pthread-emb-ps3/platform/psl1ght
12+
rm -Rf pthread-emb-ps3
13+
mkdir pthread-emb-ps3
14+
echo "Unpacking pthread-emb"
15+
extract ../archives/pthread-emb-ps3.tar.gz --strip-components=1 --directory=pthread-emb-ps3
16+
cd pthread-emb-ps3/platform/psl1ght
1017

1118
## Compile and install.
12-
${MAKE:-make} install
19+
jobs=$(nproc 2>/dev/null || sysctl -n hw.ncpu)
20+
${MAKE:-make} -j"$jobs" install

0 commit comments

Comments
 (0)