mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-11 02:44:57 +08:00
89 lines
2.6 KiB
Makefile
89 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2026 jjm2473@gmail.com
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
AGENTFLOW_ARCH_x86_64:=amd64
|
|
AGENTFLOW_ARCH_aarch64:=arm64
|
|
AGENTFLOW_ARCH:=$(AGENTFLOW_ARCH_$(ARCH))
|
|
|
|
AGENTFLOW_HASH_x86_64:=454857022d555b23979bd7b9116ef926ce7117e9e6034116f3223bb72cae07db
|
|
AGENTFLOW_HASH_aarch64:=34dfe07fd2a1bcb7de8eadb41dd0a67b46d5db78f4ca14d1835fe94608c0579a
|
|
|
|
PKG_NAME:=agentflow
|
|
PKG_VERSION:=0.3.1
|
|
PKG_RELEASE:=9
|
|
|
|
AGENTFLOW_URL_FILE:=agentflow-linux-$(AGENTFLOW_ARCH)
|
|
AGENTFLOW_DOWNLOAD:=$(AGENTFLOW_URL_FILE)-$(AGENTFLOW_HASH_$(ARCH))
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
STRIP:=true
|
|
RSTRIP:=:
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Download/agentflow
|
|
URL:=https://fw.koolcenter.com/binary/geili/agentflow/build/
|
|
URL_FILE:=$(AGENTFLOW_URL_FILE)
|
|
FILE:=$(AGENTFLOW_DOWNLOAD)
|
|
HASH:=skip
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Web Servers/Proxies
|
|
TITLE:=AgentFlow
|
|
DEPENDS:=@(x86_64||aarch64) +git +git-http +mise
|
|
URL:=https://agentflow.geili.ai/
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
AgentFlow provides a Web UI for orchestrating coding agents and workflows.
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/agentflow
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/prerm
|
|
#!/bin/sh
|
|
if [ "$${IPKG_INSTROOT}" = "" ]; then
|
|
if [ "$$(readlink /usr/share/linkeasefull/desktop-apps.d/30-agentflow.json 2>/dev/null)" = "/usr/share/agentflow/agentflow-plugin.json" ]; then
|
|
rm -f /usr/share/linkeasefull/desktop-apps.d/30-agentflow.json
|
|
fi
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(INSTALL_DIR) $(PKG_BUILD_DIR)
|
|
$(CP) $(DL_DIR)/$(AGENTFLOW_DOWNLOAD) $(PKG_BUILD_DIR)/agentflow
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/uci-defaults $(1)/etc/config $(1)/usr/share/agentflow/www $(1)/usr/share/linkeasefull/desktop-apps.d
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/agentflow $(1)/usr/sbin/agentflow
|
|
$(INSTALL_BIN) ./files/agentflow.init $(1)/etc/init.d/agentflow
|
|
$(INSTALL_BIN) ./files/agentflow.uci-default $(1)/etc/uci-defaults/09-agentflow
|
|
$(INSTALL_CONF) ./files/agentflow.config $(1)/etc/config/agentflow
|
|
$(INSTALL_DATA) ./files/agentflow-plugin.json $(1)/usr/share/agentflow/agentflow-plugin.json
|
|
$(INSTALL_DATA) ./files/www/logo.svg $(1)/usr/share/agentflow/www/logo.svg
|
|
ln -sf /usr/share/agentflow/agentflow-plugin.json $(1)/usr/share/linkeasefull/desktop-apps.d/30-agentflow.json
|
|
endef
|
|
|
|
$(eval $(call Download,agentflow))
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|