From c39bc47a92d3392fe501b6d27c0904e5c27cdf1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 16 Feb 2022 13:00:48 +0100 Subject: healthcheck: add languages --- healthcheck/Makefile | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) (limited to 'healthcheck/Makefile') diff --git a/healthcheck/Makefile b/healthcheck/Makefile index 8faa1fb..928aad5 100644 --- a/healthcheck/Makefile +++ b/healthcheck/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/) +# Copyright (C) 2021-2022 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. @@ -15,6 +15,8 @@ PKG_MAINTAINER:=CZ.NIC PKG_LICENSE:=GPL-3.0-or-later PKG_LICENSE_FILES:=COPYING +LOCALES:=cs nb ru sk + include $(INCLUDE_DIR)/autopkg-branch.mk include $(INCLUDE_DIR)/package.mk include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk @@ -36,6 +38,17 @@ define Package/healthcheck/description Turris router health checking tool. endef +define run_makefile + $(call Build/Compile/Default) +endef +Hooks/Compile/Pre += run_makefile + +define Py3Package/healthcheck/filespec ++|$(PYTHON3_PKG_DIR) +-|$(PYTHON3_PKG_DIR)/healthcheck*/locale/* +endef + + define Py3Package/healthcheck/install $(INSTALL_DIR) $(1)/usr/bin $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ @@ -44,6 +57,27 @@ define Py3Package/healthcheck/install $(INSTALL_CONF) ./files/cron $(1)/etc/cron.d/healthcheck endef +define TRANSLATION + +define Package/healthcheck-l10n-$(1) + TITLE:=Translation for package healthcheck: $(1) + DEPENDS:=+healthcheck +endef + +define Package/healthcheck-l10n-$(1)/install + $$(foreach MOD,healthcheck healthcheck_setup healthcheck_system, + $$(INSTALL_DIR) $$(1)$$(PYTHON3_PKG_DIR)/$$(MOD)/locale/$(1)/LC_MESSAGES + $$(INSTALL_DATA) \ + $$(PKG_INSTALL_DIR)$$(PYTHON3_PKG_DIR)/$$(MOD)/locale/$(1)/LC_MESSAGES/*.mo \ + $$(1)$$(PYTHON3_PKG_DIR)/$$(MOD)/locale/$(1)/LC_MESSAGES/ + ) +endef + +$$(eval $$(call BuildPackage,healthcheck-l10n-$(1))) + +endef + $(eval $(call Py3Package,healthcheck)) $(eval $(call BuildPackage,healthcheck)) $(eval $(call BuildPackage,healthcheck-src)) +$(foreach LANG,$(LOCALES),$(eval $(call TRANSLATION,$(LANG)))) -- cgit v1.2.3