Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Build Polarssl 1.3.9
run: ./libraries.sh 017

- name: Build Libcurl 7.64.1
- name: Build MbedTLS 2.28.10
run: ./libraries.sh 018

- name: Build Libmad 0.15.1b
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Build Tiny3d_libfont
run: ./libraries.sh 027

- name: Build MbedTLS 2.28.10
- name: Build Libcurl 7.64.1
run: ./libraries.sh 028

- name: Build Libunrar
Expand All @@ -192,6 +192,9 @@ jobs:
- name: Build Libsmb2
run: ./libraries.sh 031

- name: Build Pthread-emb
run: ./libraries.sh 032

- name: Build Package
run: |
cd $PSL1GHT
Expand Down
1 change: 1 addition & 0 deletions archives/archives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ b6ae1ee2fa3d42ac489287d3ec34c5885730b1296f0801ae577a35193d3affbc 1903175 https:
- - https://github.com/sahlberg/libnfs/tarball/master -> libnfs.tar.gz
- - https://github.com/sahlberg/libsmb2/tarball/master -> libsmb2.tar.gz
- - https://github.com/clienthax/psl1ght/tarball/master -> psl1ght.tar.gz
- - https://github.com/bucanero/pthread-emb-ps3/tarball/master -> pthread-emb-ps3.tar.gz
2 changes: 1 addition & 1 deletion scripts/029-libunrar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ cd libunrar

## Compile and install.
jobs=$(nproc 2>/dev/null || sysctl -n hw.ncpu)
${MAKE:-make} -j"$jobs"
${MAKE:-make} -j"$jobs" install
20 changes: 20 additions & 0 deletions scripts/032-pthread-emb.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -eo pipefail
# pthread-emb ps3 library

## Source util functions
source ../utils/utils.sh

## Download the source code.
../download.sh pthread-emb-ps3.tar.gz

## Unpack the source code.
rm -Rf pthread-emb-ps3
mkdir pthread-emb-ps3
echo "Unpacking pthread-emb"
extract ../archives/pthread-emb-ps3.tar.gz --strip-components=1 --directory=pthread-emb-ps3
cd pthread-emb-ps3/platform/psl1ght

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