You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=rtl_433
  8. PKG_VERSION:=20.02
  9. PKG_RELEASE:=1
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  11. PKG_SOURCE_URL:=https://codeload.github.com/merbanan/rtl_433/tar.gz/$(PKG_VERSION)?
  12. PKG_HASH:=4f114017ede02d3038c449cf7d25cc82eecda5960e5229cc229774681a9ad80b
  13. PKG_MAINTAINER:=Jasper Scholte <NightNL@outlook.com>
  14. PKG_LICENSE:=GPL-2.0-or-later
  15. PKG_LICENSE_FILES:=COPYING
  16. CMAKE_INSTALL:=1
  17. PKG_BUILD_PARALLEL:=1
  18. include $(INCLUDE_DIR)/package.mk
  19. include $(INCLUDE_DIR)/cmake.mk
  20. define Package/rtl_433
  21. TITLE:=Realtek RTL2832 based 433.92MHz generic data receiver
  22. SECTION:=utils
  23. CATEGORY:=Utilities
  24. DEPENDS:=+librtlsdr +rtl-sdr +libtool-bin
  25. URL:=https://github.com/merbanan/rtl_433
  26. endef
  27. define Package/rtl-sdr/description
  28. rtl_433 turns your Realtek RTL2832 based DVB dongle into a 433.92MHz generic data receiver.
  29. endef
  30. define Package/rtl_433/install
  31. $(INSTALL_DIR) $(1)/usr/bin
  32. $(CP) $(PKG_INSTALL_DIR)/usr/bin/rtl_433 $(1)/usr/bin
  33. endef
  34. $(eval $(call BuildPackage,rtl_433))