Remove ax-agent package

pull/431/head
Igor Zalatov (from Citadel PC) 2022-09-04 16:33:15 +03:00
parent 290631c34b
commit dd335c1d95
5 changed files with 0 additions and 38 deletions

View File

@ -1 +0,0 @@
../../general/package/ax-agent

View File

@ -1 +0,0 @@
../../general/package/ax-agent

View File

@ -1,7 +0,0 @@
config BR2_PACKAGE_AX_AGENT
bool "ax-agent"
default n
help
Simple daemon
https://openipc.org

View File

@ -1,22 +0,0 @@
################################################################################
#
# ax-agent | updated 2022.08.10
#
################################################################################
AX_AGENT_LICENSE = MIT
AX_AGENT_LICENSE_FILES = LICENSE
define AX_AGENT_EXTRACT_CMDS
cp ../general/package/ax-agent/src/ax-agent.c $(@D)/
endef
define AX_AGENT_BUILD_CMDS
(cd $(@D); $(TARGET_CC) -s ax-agent.c -o ax-agent)
endef
define AX_AGENT_INSTALL_TARGET_CMDS
install -m 0755 -D $(@D)/ax-agent $(TARGET_DIR)/usr/sbin/ax-agent
endef
$(eval $(generic-package))

View File

@ -1,7 +0,0 @@
#include <stdio.h>
int main (void)
{
puts ("Hello, World!");
return 0;
}