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.

89 lines
2.8 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.14.0
  10. PKG_RELEASE:=1
  11. PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>, Daniel Engberg <daniel.engberg.lists@pyret.net>
  12. PKG_LICENSE:=GPL-3.0+
  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://github.com/netdata/netdata/releases/download/v$(PKG_VERSION)
  17. PKG_HASH:=f3768f6927e3712dce73794c6943a12f4454410c872eb3dfd19af4f52296187a
  18. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION)
  19. PKG_INSTALL:=1
  20. PKG_FIXUP:=autoreconf
  21. PKG_USE_MIPS16:=0
  22. include $(INCLUDE_DIR)/package.mk
  23. define Package/netdata
  24. SECTION:=admin
  25. CATEGORY:=Administration
  26. DEPENDS:=+zlib +libuuid +libmnl
  27. TITLE:=Real-time performance monitoring tool
  28. URL:=https://my-netdata.io/
  29. endef
  30. define Package/netdata/description
  31. netdata is a highly optimized Linux daemon providing real-time performance
  32. monitoring for Linux systems, applications and SNMP devices over the web.
  33. If you want to use Python plugins install python3, python3-yaml and
  34. python3-urllib3
  35. endef
  36. TARGET_CFLAGS := $(filter-out -O%,$(TARGET_CFLAGS))
  37. TARGET_CFLAGS += -ffunction-sections -fdata-sections -O3
  38. TARGET_LDFLAGS += -Wl,--gc-sections
  39. CONFIGURE_ARGS += \
  40. --with-zlib \
  41. --with-math \
  42. --disable-x86-sse \
  43. --enable-lto \
  44. --without-libcap \
  45. --disable-plugin-nfacct
  46. define Package/netdata/conffiles
  47. /etc/netdata/
  48. endef
  49. define Package/netdata/install
  50. $(INSTALL_DIR) $(1)/etc/netdata/custom-plugins.d
  51. $(CP) $(PKG_INSTALL_DIR)/etc/netdata $(1)/etc
  52. $(CP) ./files/netdata.conf $(1)/etc/netdata
  53. $(INSTALL_DIR) $(1)/usr/lib
  54. $(CP) $(PKG_INSTALL_DIR)/usr/lib/netdata $(1)/usr/lib
  55. $(CP) $(1)/usr/lib/netdata/conf.d/fping.conf $(1)/etc
  56. $(CP) $(1)/usr/lib/netdata/conf.d/health_alarm_notify.conf $(1)/etc
  57. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/pyyaml2
  58. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/pyyaml3
  59. rm -rf $(1)/usr/lib/netdata/python.d/python_modules/urllib3
  60. $(CP) $(1)/usr/lib/netdata/plugins.d/tc-qos-helper.sh $(1)/etc
  61. $(INSTALL_DIR) $(1)/usr/sbin
  62. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/netdata $(1)/usr/sbin
  63. $(INSTALL_DIR) $(1)/usr/share/netdata
  64. $(CP) $(PKG_INSTALL_DIR)/usr/share/netdata $(1)/usr/share
  65. rm $(1)/usr/share/netdata/web/demo*html
  66. rm $(1)/usr/share/netdata/web/fonts/*.svg
  67. rm $(1)/usr/share/netdata/web/fonts/*.ttf
  68. rm $(1)/usr/share/netdata/web/fonts/*.woff
  69. rm $(1)/usr/share/netdata/web/images/*.png
  70. rm $(1)/usr/share/netdata/web/images/*.gif
  71. rm $(1)/usr/share/netdata/web/images/*.ico
  72. $(INSTALL_DIR) $(1)/etc/init.d
  73. $(INSTALL_BIN) ./files/netdata.init $(1)/etc/init.d/netdata
  74. endef
  75. $(eval $(call BuildPackage,netdata))