mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 18:41:15 +08:00
30 lines
665 B
Makefile
30 lines
665 B
Makefile
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=0.1.12
|
|
PKG_RELEASE:=14
|
|
|
|
LUCI_TITLE:=LuCI support for OpenClaw Launcher
|
|
LUCI_PKGARCH:=all
|
|
LUCI_DEPENDS:=+luci-base +luci-compat +luci-lib-taskd +curl +ca-bundle +tar +xz-utils +jsonfilter +git +git-http +ttyd
|
|
|
|
define Package/luci-app-openclawmgr/conffiles
|
|
/etc/config/openclawmgr
|
|
endef
|
|
|
|
define Package/luci-app-openclawmgr/prerm
|
|
#!/bin/sh
|
|
/etc/init.d/openclawmgr stop >/dev/null 2>&1 || true
|
|
exit 0
|
|
endef
|
|
|
|
define Package/luci-app-openclawmgr/postrm
|
|
#!/bin/sh
|
|
rm -f /tmp/luci-indexcache /tmp/luci-modulecache/* 2>/dev/null
|
|
exit 0
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|