{"id":20982102,"url":"https://github.com/dsward2/librtlsdr","last_synced_at":"2025-03-13T10:25:10.601Z","repository":{"id":89153064,"uuid":"530807996","full_name":"dsward2/librtlsdr","owner":"dsward2","description":"librtlsdr built for use with Swift Package Manager in LocalRadio app for macOS","archived":false,"fork":false,"pushed_at":"2022-09-02T01:37:55.000Z","size":908,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-20T06:44:34.955Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dsward2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-30T19:51:10.000Z","updated_at":"2022-08-30T19:51:20.000Z","dependencies_parsed_at":"2023-06-14T04:25:54.630Z","dependency_job_id":null,"html_url":"https://github.com/dsward2/librtlsdr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsward2%2Flibrtlsdr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsward2%2Flibrtlsdr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsward2%2Flibrtlsdr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsward2%2Flibrtlsdr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsward2","download_url":"https://codeload.github.com/dsward2/librtlsdr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243384632,"owners_count":20282411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T05:44:25.307Z","updated_at":"2025-03-13T10:25:10.554Z","avatar_url":"https://github.com/dsward2.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![librtlsdr version](https://img.shields.io/github/tag/librtlsdr/librtlsdr.svg?style=flat\u0026label=librtlsdr)](https://github.com/librtlsdr/librtlsdr/releases)\n[![GPLv2 License](http://img.shields.io/badge/license-GPLv2-brightgreen.svg)](https://tldrlegal.com/license/gnu-general-public-license-v2)\n\n# Description\n\nrtl-sdr turns your Realtek RTL2832 based DVB dongle into a SDR receiver\n\n\n# New enhancements and features in this version\n\nMany different developments have been taken in this release. For an overview, see [improvements](README_improvements.md)\n\n# Build / Install (on debian/ubuntu)\n\n## prerequisites\ndevelopment tools have to be installed:\n```\nsudo apt-get install build-essential cmake git\n```\n\ninstall the libusb-1.0 development package::\n```\nsudo apt-get install libusb-dev libusb-1.0-0-dev\n```\n\n## retrieve the sources - right branch\n\n```\ngit clone https://github.com/librtlsdr/librtlsdr.git\n```\n\nin case you want the *development* branch, e.g. for testing or preparing patches:\n```\ncd librtlsdr\ngit checkout development\n```\n\nby default, you should have the *master* branch, in doubt:\n```\ncd librtlsdr\ngit status\ngit checkout master\n```\n\n## build\nrun cmake and start compilation. cmake will accept some options, e.g.\n* `-DINSTALL_UDEV_RULES=ON`, default is `OFF`\n* `-DDETACH_KERNEL_DRIVER=ON`, default is `OFF`\n* `-DPROVIDE_UDP_SERVER=ON`, default is `OFF`\n* `-DWITH_RPC=ON`, default is `OFF`\n* `-DLINK_RTLTOOLS_AGAINST_STATIC_LIB=ON`, default is `OFF`\n* `-DRTL_STATIC_BUILD=OFF`, default is `ON`: for MINGW on WIN32\n\nall cmake options are optional\n\n```\nmkdir build \u0026\u0026 cd build\ncmake ../ -DINSTALL_UDEV_RULES=ON\nmake\n```\n\n## install\nsetup into prefix, usually will require `sudo`:\n```\nsudo make install\nsudo ldconfig\n```\n\n# Development builds / binaries\n\n[GitHub Actions](https://github.com/librtlsdr/librtlsdr/actions) is used for development builds - for Linux (x86), MacOS and Windows x86 32/64.\nCross-builds for Windows from a Linux machine: see [cross_build_mingw32.sh](cross_build_mingw32.sh) or [cross_build_mingw64.sh](cross_build_mingw64.sh)\n\n# For more information see:\n\nhttp://superkuh.com/rtlsdr.html\n\nhttps://osmocom.org/projects/rtl-sdr/wiki/Rtl-sdr\n\n\n# Setup for SDR only use - without DVB compatibility:\n\n- a special USB vendor/product id got reserved at http://pid.codes/ : 0x1209/0x2832\n- for such devices the linux kernel's DVB modules are not loaded automatically,\n thus can be used without blacklisting *dvb_usb_rtl28xxu* below /etc/modprobe.d/\n- this allows to use a second RTL dongle for use with DVB in parallel\n- the IDs can be programmed with '`rtl_eeprom -n`' or '`rtl_eeprom -g realtek_sdr`'\n- for permanent blacklisting you might check/call following from the clone git directory\n    ```./install-blacklist.sh```\n\n\n# Contributing\n\nPull requests are always welcome but please make changes to, and pull request from, the development branch.\n\n## Initial setup:\n\n- fork the librtlsdr repo via GitHub\n- clone your fork locally and cd to the cloned repo's folder\n- add the upstream development repo:\n    * `git remote add upstream git@github.com:librtlsdr/librtlsdr.git`\n- track the development branch: \n    * `git branch --track development origin/development`\n\n## Normal workflow:\n\n- checkout the development branch and make your changes\n- commit your changes\n- sync your local development branch with the upstream development branch:\n    * `git fetch upstream`\n    * `git merge upstream/development`\n- push your commit/s to your forked repo\n- do a pull request via GitHub\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsward2%2Flibrtlsdr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsward2%2Flibrtlsdr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsward2%2Flibrtlsdr/lists"}