-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCUMENTATION: Add install instruction
- Loading branch information
1 parent
674ad1a
commit e4cecda
Showing
14 changed files
with
139 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Installation | ||
|
||
There are two ways to install R-Bus: | ||
- From packaged binary | ||
- From source | ||
|
||
*Prefer the packaged binary if you want to find yoursel downloading some dependencies and compiling R-Bus.* | ||
*Prefer the packaged binary if you are not a nerd* | ||
|
||
Else, go ahead and install R-Bus from source. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Packaged binary | ||
|
||
Now, let's install R-Bus from packaged binary. | ||
|
||
Please select the right page for your operating system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# GNU/Linux | ||
|
||
```bash | ||
curl -Lo 'r-type-linux.sh' 'https://github.com/X-R-G-B/R-Bus/releases/latest/download/r-type-linux.sh' | ||
# The following line will Accepts the license, extract the packaged binary + its dependencies | ||
yes y | bash 'r-type-linux.sh' | ||
cd R-Type-Linux || echo "Failed to cd to R-Type-Linux, please open an issue: 'https://github.com/X-R-G-B/R-Bus/issues/new?assignees=&labels=bug&projects=&template=install-failed.yml&title=%5BFAIL+INSTALL%5D+-+Title'" | ||
# your binaries are in ./bin/ | ||
ls ./bin/ | ||
``` | ||
|
||
:warnings: When you want to move this binaries, please move all the folder R-Type-Linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# MacOs | ||
|
||
Not available now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Windows | ||
|
||
Download https://github.com/X-R-G-B/R-Bus/releases/latest/download/r-type-windows.exe and run it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Source | ||
|
||
Now, let's install R-Bus from source. | ||
|
||
Please select the right page for your operating system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# GNU/Linux | ||
|
||
- You need to have cmake, and a c++ compiler | ||
|
||
*hint: you can use https://github.com/aminya/setup-cpp to install it* | ||
|
||
- Git clone the project or download the .zip | ||
|
||
`git clone -b main https://github.com/X-R-G-B/R-Bus.git R-Bus-main` | ||
|
||
**OR** | ||
|
||
`wget https://github.com/X-R-G-B/R-Bus/archive/main.zip && unzip R-Bus-main.zip` | ||
|
||
- Change directory | ||
|
||
`cd R-Bus-main || "Failed to cd to R-Type-Linux, please open an issue: 'https://github.com/X-R-G-B/R-Bus/issues/new?assignees=&labels=bug&projects=&template=install-failed.yml&title=%5BFAIL+INSTALL%5D+-+Title'"` | ||
|
||
- Install dependencies | ||
|
||
`sudo ./scripts/install-deps-linux.sh` | ||
|
||
- Build the project | ||
|
||
`./scripts/compil.sh` | ||
|
||
Well Done you have your binaries! | ||
|
||
Now, you can run it but dont move it anywhere |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# MacOs | ||
|
||
- You need to have cmake, and a c++ compiler | ||
|
||
*hint: you can use https://github.com/aminya/setup-cpp to install it* | ||
|
||
- Git clone the project or download the .zip | ||
|
||
`git clone -b main https://github.com/X-R-G-B/R-Bus.git R-Bus-main` | ||
|
||
**OR** | ||
|
||
`wget https://github.com/X-R-G-B/R-Bus/archive/main.zip && unzip R-Bus-main.zip` | ||
|
||
- Change directory | ||
|
||
`cd R-Bus-main || "Failed to cd to R-Type-Linux, please open an issue: 'https://github.com/X-R-G-B/R-Bus/issues/new?assignees=&labels=bug&projects=&template=install-failed.yml&title=%5BFAIL+INSTALL%5D+-+Title'"` | ||
|
||
- Install dependencies | ||
|
||
`./scripts/install-deps-macos.sh` | ||
|
||
- Build the project | ||
|
||
`./scripts/compil.sh` | ||
|
||
Well Done you have your binaries! | ||
|
||
Now, you can run it but dont move it anywhere |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Windows | ||
|
||
- You need to have cmake, and a c++ compiler | ||
|
||
*hint: you can use https://github.com/aminya/setup-cpp to install it* | ||
|
||
- Git clone the project or download the .zip | ||
|
||
`git clone -b main https://github.com/X-R-G-B/R-Bus.git R-Bus-main` | ||
|
||
**OR** | ||
|
||
`wget https://github.com/X-R-G-B/R-Bus/archive/main.zip && unzip R-Bus-main.zip` | ||
|
||
- Change directory | ||
|
||
`cd R-Bus-main || "Failed to cd to R-Type-Linux, please open an issue: 'https://github.com/X-R-G-B/R-Bus/issues/new?assignees=&labels=bug&projects=&template=install-failed.yml&title=%5BFAIL+INSTALL%5D+-+Title'"` | ||
|
||
- Install dependencies | ||
|
||
`./scripts/install-deps-windows.ps1` | ||
|
||
- Build the project | ||
|
||
`./scripts/compil.ps1` | ||
|
||
Well Done you have your binaries! | ||
|
||
Now, you can run it but dont move it anywhere |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters