https://github.com/pspdev/psp-packages
https://github.com/pspdev/psp-packages
hacktoberfest playstation psp
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pspdev/psp-packages
- Owner: pspdev
- License: unlicense
- Created: 2021-08-07T18:17:56.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2026-01-22T15:39:13.000Z (5 months ago)
- Last Synced: 2026-01-23T06:07:26.709Z (5 months ago)
- Topics: hacktoberfest, playstation, psp
- Language: Shell
- Homepage: https://pspdev.github.io/psp-packages/
- Size: 1.45 MB
- Stars: 36
- Watchers: 5
- Forks: 22
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PSP Packages
This repo contains build files for all the libraries shipped with `PSPDEV`. They are automatically build and hosted as a pacman repository using Github actions. They can be downloaded with the ``psp-pacman`` command.
## Installing libraries from the repository
Installing libraries from this repository can be done with ``psp-pacman`` like so:
```
psp-pacman -Sy library
```
Replace library with the library which should be installed.
An overview of libaries available can be viewed with:
```
psp-pacman -Ss
```
Installing all available libraries can be done with:
```
psp-pacman -Sy
psp-pacman -S pspdev-default
```
Updating libraries can be done with:
```
psp-pacman -Syu
```
## Building individual libraries
Building a single package from a clone of this repository can be useful if you wish to modify it in some way. It can be done by opening a terminal in the directory of the chosen library and running the following:
```
psp-makepkg -i
```
This will build and install the package.
## Pacman Repository Hosting
The pacman repository created from this repo is published to GitHub Pages by the GitHub Action in this repo. This is a change from the previous builds, which used GitHub releases for hosting. The repository should already be set up in `psp-pacman` like this at the bottom of `${PSPDEV}/etc/pacman.conf`:
```
[pspdev]
SigLevel = Optional TrustAll
Server = https://pspdev.github.io/psp-packages/
```
For forks or alternative repos, pspdev in the url in the `Server` setting should be replaced with the owner of the fork. When forking, make sure to set the GitHub Pages source to `GitHub Actions` in the settings of the GitHub repo.
## Contributing
Contributions to this repository are welcome. If you wish to update or add a library look at the [contributing page](CONTRIBUTING.md).
## Special thanks
A special thanks goes out to both the contributors of PSPDEV and the VITASDK. Most of the scripts in this repository are based on scripts written by them.