summaryrefslogtreecommitdiff
path: root/healthcheck/Makefile
blob: 8faa1fbd9a841fa7d3bcacd2cc6eccf2954b1b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=healthcheck
PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/healthcheck.git
PKG_SOURCE_BRANCH:=dev

PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz>
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=COPYING

include $(INCLUDE_DIR)/autopkg-branch.mk
include $(INCLUDE_DIR)/package.mk
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk

define Package/healthcheck
  SECTION:=utils
  CATEGORY:=Utilities
  TITLE:=Healthcheck
  URL:=https://gitlab.nic.cz/turris/healthcheck
  DEPENDS:=\
    +python3-humanize \
    +python3-rich \
    +python3-crontab \
    +python3-uci
  VARIANT:=python3
endef

define Package/healthcheck/description
  Turris router health checking tool.
endef

define Py3Package/healthcheck/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/

	$(INSTALL_DIR) $(1)/etc/cron.d
	$(INSTALL_CONF) ./files/cron $(1)/etc/cron.d/healthcheck
endef

$(eval $(call Py3Package,healthcheck))
$(eval $(call BuildPackage,healthcheck))
$(eval $(call BuildPackage,healthcheck-src))