mirror of
https://github.com/openwrt/packages.git
synced 2025-07-17 02:54:46 +00:00
These patches seems leftovers, because uClibc-ng was removed from OpenWrt main repo in 2020 [1]. If someone is uses still uClibc-ng, then these patches should be upstreamed. [1] https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=63fb175203bbf3b336804587c2f5b3a2d8132ec1 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=device-observatory
|
|
PKG_VERSION:=1.2.0
|
|
PKG_RELEASE:=8
|
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/mwarning/device-observatory/tar.gz/v$(PKG_VERSION)?
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_HASH:=83b3f362f154a427abbd3af31b3c2dda9983cdc15f6b833d804727ef0fbdc72e
|
|
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/device-observatory
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=device-observatory
|
|
MAINTAINER:=Moritz Warning <moritzwarning@web.de>
|
|
URL:=https://github.com/mwarning/device-observatory/
|
|
DEPENDS:=+iw +libpcap +libmicrohttpd
|
|
endef
|
|
|
|
define Package/device-observatory/conffiles
|
|
/etc/config/device-observatory
|
|
endef
|
|
|
|
define Package/device-observatory/description
|
|
Show information about connected devices and connections to increase security awareness.
|
|
endef
|
|
|
|
define Package/device-observatory/install
|
|
$(CP) files/* $(1)
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/device-observatory $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/usr/share/device-observatory
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/macdb.txt $(1)/usr/share/device-observatory/macdb.txt
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,device-observatory))
|