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.

96 lines
3.0 KiB

  1. #
  2. # Copyright (C) 2008-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=netdata
  9. PKG_VERSION:=1.16.1
  10. PKG_RELEASE:=2
  11. PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>, Daniel Engberg <daniel.engberg.lists@pyret.net>
  12. PKG_LICENSE:=GPL-3.0-or-later
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_CPE_ID:=cpe:/a:my-netdata:netdata
  15. PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
  16. PKG_SOURCE_URL:=https://codeload.github.com/netdata/netdata/tar.gz/v$(PKG_VERSION)?
  17. PKG_HASH:=94492108a6e24e8b39c011ae35ff6f50a848d816af396fdf2b44655cecd78672
  18. PKG_INSTALL:=1
  19. PKG_FIXUP:=autoreconf
  20. PKG_USE_MIPS16:=0
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/netdata
  23. SECTION:=admin
  24. CATEGORY:=Administration
  25. DEPENDS:=+zlib +libuuid +libmnl +libjson-c
  26. TITLE:=Real-time performance monitoring tool
  27. URL:=https://www.netdata.cloud/
  28. endef
  29. define Package/netdata/description
  30. netdata is a highly optimized Linux daemon providing real-time performance
  31. monitoring for Linux systems, applications and SNMP devices over the web.
  32. If you want to use Python plugins install python3, python3-yaml and
  33. python3-urllib3
  34. endef
  35. TARGET_CFLAGS := $(filter-out -O%,$(TARGET_CFLAGS))
  36. TARGET_CFLAGS += -ffunction-sections -fdata-sections -O3
  37. TARGET_LDFLAGS += -Wl,--gc-sections
  38. CONFIGURE_ARGS += \
  39. --with-zlib \
  40. --with-math \
  41. --disable-x86-sse \
  42. --enable-lto \
  43. --without-libcap \
  44. --disable-https \
  45. --disable-dbengine \
  46. --disable-plugin-nfacct \
  47. --disable-plugin-freeipmi \
  48. --disable-plugin-cups \
  49. --disable-plugin-xenstat \
  50. --disable-backend-prometheus-remote-write \
  51. --enable-jsonc
  52. define Package/netdata/conffiles
  53. /etc/netdata/
  54. endef
  55. define Package/netdata/install
  56. $(INSTALL_DIR) $(1)/etc/netdata/custom-plugins.d
  57. $(CP) $(PKG_INSTALL_DIR)/etc/netdata $(1)/etc
  58. $(CP) ./files/netdata.conf $(1)/etc/netdata
  59. touch $(1)/etc/netdata/.opt-out-from-anonymous-statistics
  60. $(INSTALL_DIR) $(1)/usr/lib
  61. $(CP) $(PKG_INSTALL_DIR)/usr/lib/netdata $(1)/usr/lib
  62. $(CP) $(1)/usr/lib/netdata/conf.d/fping.conf $(1)/etc
  63. $(CP) $(1)/usr/lib/netdata/conf.d/health_alarm_notify.conf $(1)/etc
  64. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/pyyaml2
  65. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/pyyaml3
  66. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/urllib3
  67. $(CP) $(1)/usr/lib/netdata/plugins.d/tc-qos-helper.sh $(1)/etc
  68. $(INSTALL_DIR) $(1)/usr/sbin
  69. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/netdata $(1)/usr/sbin
  70. $(INSTALL_DIR) $(1)/usr/share/netdata
  71. $(CP) $(PKG_INSTALL_DIR)/usr/share/netdata $(1)/usr/share
  72. rm $(1)/usr/share/netdata/web/demo*html
  73. rm $(1)/usr/share/netdata/web/fonts/*.svg
  74. rm $(1)/usr/share/netdata/web/fonts/*.ttf
  75. rm $(1)/usr/share/netdata/web/fonts/*.woff
  76. rm $(1)/usr/share/netdata/web/images/*.png
  77. rm $(1)/usr/share/netdata/web/images/*.gif
  78. rm $(1)/usr/share/netdata/web/images/*.ico
  79. $(INSTALL_DIR) $(1)/etc/init.d
  80. $(INSTALL_BIN) ./files/netdata.init $(1)/etc/init.d/netdata
  81. endef
  82. $(eval $(call BuildPackage,netdata))