hc
2023-02-18 a08c8b75ee83d7f62c9aefc23bfb42082aa4076c
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
################################################################################
#
# tcf-agent
#
################################################################################
 
TCF_AGENT_VERSION = 1.6.0
# the tar.xz link was broken the time this file got authored
TCF_AGENT_SOURCE = org.eclipse.tcf.agent-$(TCF_AGENT_VERSION).tar.gz
TCF_AGENT_SITE = http://git.eclipse.org/c/tcf/org.eclipse.tcf.agent.git/snapshot
# see https://wiki.spdx.org/view/Legal_Team/License_List/Licenses_Under_Consideration
TCF_AGENT_LICENSE = BSD-3-Clause
TCF_AGENT_LICENSE_FILES = agent/edl-v10.html
 
TCF_AGENT_DEPENDENCIES = util-linux
TCF_AGENT_SUBDIR = agent
 
# there is not much purpose for the shared lib,
# if wont be used (unmodifed) outside the tcf-agent application
TCF_AGENT_CONF_OPTS = \
   -DBUILD_SHARED_LIBS=OFF \
   -DTCF_MACHINE=$(call qstrip,$(BR2_PACKAGE_TCF_AGENT_ARCH))
 
define TCF_AGENT_INSTALL_INIT_SYSTEMD
   $(INSTALL) -D -m 644 package/tcf-agent/tcf-agent.service \
       $(TARGET_DIR)/usr/lib/systemd/system/tcf-agent.service
   mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
   ln -fs ../../../../usr/lib/systemd/system/tcf-agent.service \
       $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/tcf-agent.service
endef
 
define TCF_AGENT_INSTALL_INIT_SYSV
   $(INSTALL) -D -m 755 package/tcf-agent/S55tcf-agent \
       $(TARGET_DIR)/etc/init.d/S55tcf-agent
endef
 
$(eval $(cmake-package))