Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 4537a4d

Browse files
committed
add mkpsxiso install
1 parent 78d5183 commit 4537a4d

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

src/content/docs/guides/example.md

+39
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,45 @@ The recommended emulators for memory analysis are:
3232
## Files
3333
Modifying the game files is a more direct approach to updating assets, models, textures, and even scripts in **PlayStation Games**. The following section outlines how to extract, modify, and rebuild the game files.
3434

35+
### Install mkpsxiso
36+
37+
Install dependencies
38+
```bash
39+
sudo apt update
40+
sudo apt install build-essential cmake libpng-dev zlib1g-dev libxml2-dev
41+
```
42+
43+
First, clone the mkpsxiso repository from GitHub:
44+
45+
```bash
46+
git clone https://github.com/Lameguy64/mkpsxiso.git
47+
cd mkpsxiso
48+
git submodule update --init --recursive
49+
```
50+
51+
Create a build directory and configure the build using CMake:
52+
53+
```bash
54+
mkdir build
55+
cd build
56+
cmake ..
57+
```
58+
59+
Compile mkpsxiso using make:
60+
```
61+
make
62+
```
63+
64+
To install mkpsxiso system-wide (optional), run the following command:
65+
```bash
66+
sudo make install
67+
```
68+
69+
To verify the installation, run the following command:
70+
```bash
71+
./mkpsxiso --help
72+
```
73+
3574
### Steps for Modifying Game Files
3675

3776
1. **Dump the Game Files**:

0 commit comments

Comments
 (0)