Package Details: rtl_433 23.11-1

Git Clone URL: https://aur.archlinux.org/rtl_433.git (read-only, click to copy)
Package Base: rtl_433
Description: is a generic data receiver, mainly for the 433.92 MHz, 868 MHz (SRD), 315 MHz, 345 MHz, and 915 MHz ISM bands
Upstream URL: https://github.com/merbanan/rtl_433
Licenses: GPL
Submitter: BrainDamage
Maintainer: BrainDamage
Last Packager: BrainDamage
Votes: 9
Popularity: 1.02
First Submitted: 2020-11-29 08:14 (UTC)
Last Updated: 2023-11-28 17:28 (UTC)

Required by (2)

Sources (1)

Latest Comments

flaviut commented on 2024-04-29 03:06 (UTC)

Tiny tweak to match the example in the wiki: https://wiki.archlinux.org/title/CMake_package_guidelines#Template

diff --git a/PKGBUILD b/PKGBUILD
index d6f64e8..31cf62f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,13 +20,13 @@ build() {
        cmake ../ \
                -DCMAKE_BUILD_TYPE=RelWithDebInfo \
                -DCMAKE_INSTALL_PREFIX=/usr
-       make
+       cmake --build .
 }

 package() {
        cd "${srcdir}/${pkgname}-${pkgver}"
        find examples -type f -exec install -Dvm 644 -t "${pkgdir}/usr/share/doc/${pkgname}" {} +;
        cd build_dir
-       make DESTDIR="${pkgdir}" install
+       DESTDIR="$pkgdir" cmake --install .
 }

I needed to do this to make it work with my configured default build tool of ninja rather than make.

drws commented on 2024-01-15 21:56 (UTC) (edited on 2024-01-15 21:56 (UTC) by drws)

You also need to rebuild this package due to the recent rtl-sdr update.

InFerNo commented on 2024-01-14 20:31 (UTC)

When I run rtl_433 I get the error rtl_433: error while loading shared libraries: librtlsdr.so.0: cannot open shared object file: No such file or directory.

I have checked the rtl-sdr dependency but it is up to date. Not sure what to do next.

simona commented on 2023-02-15 18:11 (UTC)

CMake Error at /share/cmake/SoapySDR/SoapySDRConfig.cmake:39 (file):
file failed to open for reading (No such file or directory):

/include/SoapySDR/Version.h
Call Stack (most recent call first):
/share/cmake/SoapySDR/SoapySDRConfig.cmake:70 (_SOAPY_SDR_GET_ABI_VERSION)
CMakeLists.txt:237 (find_package)

BrainDamage commented on 2021-11-20 16:35 (UTC)

Please don't abuse the out-of-date flag to report issues; even more if it's your aur-helper specific issues I have no control over. Report them to the aur helper's bugtracker instead.