Expand instructions for building the RTL-SDR libraries.

This commit is contained in:
Karl Lehenbauer 2014-10-19 08:57:08 -05:00
parent a9455e143e
commit d8231c2a35
1 changed files with 20 additions and 0 deletions

View File

@ -93,6 +93,25 @@ https://github.com/flightaware/piaware.
### Building
#### build and install RTL-SDR libraries
Below is a pretty standard recipe for building and installing the libraries to talk to the RTL-SDR software defined radio USB dongle.
Following this recipe builds these with a prefix of /usr instead of the default /usr/local, because Linux. These paths are also used for (and RTL-SDR files included in) the FlightAware-sourced dump1090 install package.
```
sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
make all
sudo make install
```
#### build and install dump1090
To build dump1090...
```sh
make
@ -125,3 +144,4 @@ sudo make -f makefaup1090 full-install
### For more information
Please read the original README and the Malcolm Robb ones at https://github.com/antirez/dump1090 and https://github.com/malcolmrobb/dump1090, respectively.