diff --git a/README b/README deleted file mode 100644 index 7f04203..0000000 --- a/README +++ /dev/null @@ -1,6 +0,0 @@ -rtl-sdr -turns your Realtek RTL2832 based DVB dongle into a SDR receiver -====================================================================== - -For more information see: -http://sdr.osmocom.org/trac/wiki/rtl-sdr diff --git a/README.md b/README.md new file mode 100644 index 0000000..7f9ce0d --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +[![librtlsdr version](https://img.shields.io/github/tag/librtlsdr/librtlsdr.svg?style=flat&label=librtlsdr)](https://github.com/librtlsdr/librtlsdr/releases) +[![Build Status](http://circleci-badges-max.herokuapp.com/img/librtlsdr/librtlsdr/master?token=:circle-ci-token)](https://circleci.com/gh/librtlsdr/librtlsdr/tree/master) +[![GPLv2 License](http://img.shields.io/badge/license-GPLv2-brightgreen.svg)](https://tldrlegal.com/license/gnu-general-public-license-v2) + +# Description + +rtl-sdr turns your Realtek RTL2832 based DVB dongle into a SDR receiver + + +# For more information see: + +http://sdr.osmocom.org/trac/wiki/rtl-sdr diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..b55d711 --- /dev/null +++ b/circle.yml @@ -0,0 +1,8 @@ +dependencies: + pre: + - sudo apt-get update; sudo apt-get install libusb-1.0-0-dev; + override: + - cd ~/; git clone https://github.com/librtlsdr/librtlsdr.git; cd librtlsdr; mkdir build; cd build; cmake ../; make; sudo make install; sudo ldconfig; +test: + override: + - echo "----- done -----";