mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 05:49:50 +00:00
As muninlite doesn't appear to have had a release in a few years and activity on the git repo appears to have stalled, we add some patches on our end for now. Patches: - 001->004 are upstream fixes from master. - 100 is a submitted PR: https://github.com/munin-monitoring/muninlite/pull/19 to fix https://github.com/munin-monitoring/muninlite/issues/14. - 200->204 is a submitted PR to allow customizing the monitored network interfaces: https://github.com/munin-monitoring/muninlite/pull/18. Despite the large number of patches it is actually a trivial change. Signed-off-by: Rany Hany <rany_hany@riseup.net>
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=muninlite
|
|
PKG_VERSION:=2.1.2
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/munin-monitoring/$(PKG_NAME)/releases/download/$(PKG_VERSION)/
|
|
PKG_HASH:=5a49da30944f3b85a0030b661a27e84c06c7f640050802e799304b11cc635ffc
|
|
|
|
PKG_MAINTAINER:=Jonathan McCrohan <jmccrohan@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/muninlite
|
|
SECTION:=admin
|
|
CATEGORY:=Administration
|
|
DEPENDS:=+xinetd
|
|
TITLE:=Munin node implemented in shell
|
|
URL:=https://github.com/munin-monitoring/muninlite
|
|
endef
|
|
|
|
define Package/muninlite/Default/description
|
|
Munin node implemented in shell.
|
|
Munin is a monitoring system for Unix networks.
|
|
endef
|
|
|
|
define Package/muninlite/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin/
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/muninlite $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/munin/plugins
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/muninlite.conf $(1)/etc/munin/
|
|
$(INSTALL_DIR) $(1)/etc/xinetd.d
|
|
$(INSTALL_DATA) ./files/etc/xinetd.d/muninlite $(1)/etc/xinetd.d/
|
|
endef
|
|
|
|
define Package/muninlite/conffiles
|
|
/etc/munin/
|
|
/etc/xinetd.d/muninlite
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,muninlite))
|