Skip to content

Commit 176ba02

Browse files
committed
update SOURCE.md
1 parent ff14f1d commit 176ba02

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

SOURCE.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ Once Python is installed, open Terminal and run the following:
2222
# Move into a directory to store the project
2323
cd ~/Developer
2424
# Clone project
25-
git clone https://github.com/dortania/OpenCore-Legacy-Patcher
25+
git clone https://github.com/hackdoc/OCLP-R.git
2626
# Move into Project directory
27-
cd ./OpenCore-Legacy-Patcher
27+
cd ./OCLP-R
2828
# Install Python dependencies used by the project
29+
# Notes: In requirements.txt, if you don't run Py3.11, you should delete this
2930
pip3 install -r requirements.txt
3031
```
3132

@@ -41,14 +42,14 @@ To run the project from source, simply invoke via python3:
4142

4243
```sh
4344
# Launch GUI
44-
python3 OpenCore-Patcher-GUI.command
45+
python3 OCLP-R-GUI.command
4546
```
4647

4748
Note that the OpenCore-Patcher-GUI.command file can be run as both a GUI and a CLI utility for other programs to call. If no core arguments are passed, the GUI is initialized. Otherwise the CLI will start:
4849

4950
```sh
5051
# Launch CLI
51-
python3 OpenCore-Patcher-GUI.command --build --model iMac12,2 --verbose
52+
python3 OCLP-R-GUI.command --build --model iMac12,2 --verbose
5253
```
5354

5455
Pass `-h` or `--help` for more information on supported CLI arguments.
@@ -61,13 +62,13 @@ The main goal of generating prebuilt binaries is to strip the requirement of a l
6162
# Install PyInstaller
6263
pip3 install pyinstaller
6364
# Move into project directory
64-
cd ~/Developer/OpenCore-Legacy-Patcher/
65+
cd ~/Developer/OCLP-R/
6566
# Create the pyinstaller based Application
6667
python3 Build-Project.command
6768
# Open build folder
6869
open ./dist/
6970
```
7071

71-
Once done, you'll find the application generated at `./dist/OpenCore-Patcher.app`:
72+
Once done, you'll find the application generated at `./dist/OCLP-R.app`:
7273

7374
![](./images/build-dist.png)

0 commit comments

Comments
 (0)