From 0382b8aed828efda0f7af5716484dd4cd18befc8 Mon Sep 17 00:00:00 2001 From: Starman0620 <28871190+Starman0620@users.noreply.github.com> Date: Fri, 23 Apr 2021 22:13:54 -0400 Subject: [PATCH 1/4] Update readme --- readme.md | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/readme.md b/readme.md index 4b78758..e7b119b 100644 --- a/readme.md +++ b/readme.md @@ -21,7 +21,7 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo * Digital demodulators and decoders * Light theme (I know you weirdos exist lol) * Waterfall color scheme editor -* other small customisation options +* Other small customisation options # Installing ## Windows @@ -30,6 +30,8 @@ Download the latest release from [the Releases page](https://github.com/Alexandr To create a desktop short, rightclick the exe and select `Send to -> Desktop (create shortcut)`, then, rename the shortcut on the desktop to whatever you want. ## Linux + +### Debian-based (Ubuntu, Mint, etc) Download the latest release from [the Releases page](https://github.com/AlexandreRouma/SDRPlusPlus/releases) and extract to the directory of your choice. Then, run: @@ -40,20 +42,26 @@ sudo dpkg -i sdrpp_debian_amd64.deb If `libvolk2-dev` is not available, use `libvolk1-dev`. +### Arch-based +Install the latest release from [the AUR](https://aur.archlinux.org/packages/sdrpp-git/) + +### Other +There are currently no existing packages for other distributions, for these systems you'll have to [build from source](https://github.com/AlexandreRouma/SDRPlusPlus#building-on-linux--bsd). + ## MacOS TODO ## BSD -TODO +There are currently no BSD packages, refer to [Building on Linux / BSD](https://github.com/AlexandreRouma/SDRPlusPlus#building-on-linux--bsd) for instructions on building from source. # Building on Windows ## Install dependencies * cmake * vcpkg -* PothosSDR (This will install libraires for most SDRs) +* PothosSDR (This will install libraries for most SDRs) * rtaudio -After this, install the following depencies using vcpkg: +After this, install the following dependencies using vcpkg: * fftw3 * glfw * glew @@ -168,7 +176,7 @@ First run SDR++ from the build directory to generate a default config file ./sdrpp -r ../root_dev/ ``` -Then, you need to edit the `root_dev/config` file to point to the modules that were built. Here us a sample if what it would look like: +Then, you need to edit the `root_dev/config` file to point to the modules that were built. Here is a sample of what it should look like: ```json ... @@ -195,7 +203,7 @@ You also need to change the location of the resource and module directories, for Remember that these paths will be relative to the run directory. -Off cours, remember to add entries for all modules that were built and that you wish to use. +Of course, remember to add entries for all modules that were built and that you wish to use. Next, from the top directory, you can simply run: ``` @@ -208,7 +216,9 @@ Or, if you wish to run from the build directory, you need to correct directories ``` ## Installing SDR++ -Coming soon! +To install SDR++, run the following command in your ``build`` folder: +```sh +sudo make install``` # Contributing From fc7ecab5f2007a4f94835923099f0cfdb1cfa556 Mon Sep 17 00:00:00 2001 From: Starman0620 <28871190+Starman0620@users.noreply.github.com> Date: Fri, 23 Apr 2021 22:14:39 -0400 Subject: [PATCH 2/4] Update readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e7b119b..ca5a82b 100644 --- a/readme.md +++ b/readme.md @@ -16,7 +16,7 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo * Cross-platform (Windows, Linux, OSX and BSD) * Full waterfall update when possible. Makes browsing signals easier and more pleasant -## Comming soon +## Coming soon * Digital demodulators and decoders * Light theme (I know you weirdos exist lol) From 88fe31feada019de5fb20b9572f7939652f278f7 Mon Sep 17 00:00:00 2001 From: Starman0620 <28871190+Starman0620@users.noreply.github.com> Date: Fri, 23 Apr 2021 22:17:09 -0400 Subject: [PATCH 3/4] Fixed code block in readme --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ca5a82b..e4388e0 100644 --- a/readme.md +++ b/readme.md @@ -218,7 +218,8 @@ Or, if you wish to run from the build directory, you need to correct directories ## Installing SDR++ To install SDR++, run the following command in your ``build`` folder: ```sh -sudo make install``` +sudo make install +``` # Contributing From fc350871e4502400ab98cfc954a6ef0a0ae5b23d Mon Sep 17 00:00:00 2001 From: Starman0620 <28871190+Starman0620@users.noreply.github.com> Date: Fri, 23 Apr 2021 22:18:17 -0400 Subject: [PATCH 4/4] Update readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e4388e0..88f48fe 100644 --- a/readme.md +++ b/readme.md @@ -43,7 +43,7 @@ sudo dpkg -i sdrpp_debian_amd64.deb If `libvolk2-dev` is not available, use `libvolk1-dev`. ### Arch-based -Install the latest release from [the AUR](https://aur.archlinux.org/packages/sdrpp-git/) +Install the latest release from the [sdrpp-git](https://aur.archlinux.org/packages/sdrpp-git/) AUR package ### Other There are currently no existing packages for other distributions, for these systems you'll have to [build from source](https://github.com/AlexandreRouma/SDRPlusPlus#building-on-linux--bsd).