mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
add a package for rtl_433 application
This commit is contained in:
parent
9d501b2185
commit
0cc0d38452
1 changed files with 40 additions and 0 deletions
40
rtl_433/Makefile
Normal file
40
rtl_433/Makefile
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rtl_433
|
||||
PKG_VERSION:=18.05
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/rtl_433-$(PKG_VERSION)
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/merbanan/rtl_433.git
|
||||
PKG_SOURCE_DATE:=2018-05-02
|
||||
PKG_SOURCE_VERSION:=5dce4f275b7e53e14043da685590514a992c38e4
|
||||
PKG_MIRROR_HASH:=7219b2d612959ef299bf692e3eef53735193f8c0817d229a8a40c732ab047ac5
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/rtl_433
|
||||
SECTION:=base
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=turns your Realtek RTL2832 based DVB dongle into a 433.92MHz generic data receiver
|
||||
URL:=https://github.com/merbanan/rtl_433
|
||||
DEPENDS:= +librtlsdr +libusb
|
||||
endef
|
||||
|
||||
define Package/rtl_433/description
|
||||
rtl_433 turns your Realtek RTL2832 based DVB dongle into a 433.92MHz generic data receiver
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default,)
|
||||
endef
|
||||
|
||||
define Package/rtl_433/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/rtl_433 $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,rtl_433))
|
||||
Loading…
Add table
Reference in a new issue