1################################################################################ 2# 3# iucode-tool 4# 5################################################################################ 6 7IUCODE_TOOL_VERSION = 2.3.1 8IUCODE_TOOL_SOURCE = iucode-tool_$(IUCODE_TOOL_VERSION).tar.xz 9IUCODE_TOOL_SITE = https://gitlab.com/iucode-tool/releases/raw/master 10IUCODE_TOOL_LICENSE = GPL-2.0+ 11IUCODE_TOOL_LICENSE_FILES = COPYING 12IUCODE_TOOL_CPE_ID_VALID = YES 13 14ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y) 15IUCODE_TOOL_DEPENDENCIES += argp-standalone $(TARGET_NLS_DEPENDENCIES) 16IUCODE_TOOL_CONF_ENV += LIBS=$(TARGET_NLS_LIBS) 17endif 18 19define IUCODE_TOOL_INSTALL_INIT_SYSV 20 $(INSTALL) -D -m 0755 package/iucode-tool/S00iucode-tool \ 21 $(TARGET_DIR)/etc/init.d/S00iucode-tool 22endef 23 24define IUCODE_TOOL_INSTALL_INIT_SYSTEMD 25 $(INSTALL) -D -m 644 package/iucode-tool/iucode.service \ 26 $(TARGET_DIR)/usr/lib/systemd/system/iucode.service 27endef 28 29$(eval $(autotools-package)) 30