mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 04:37:59 +08:00
27 lines
459 B
Makefile
27 lines
459 B
Makefile
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=1.0.2-20241211
|
|
PKG_RELEASE:=
|
|
|
|
LUCI_TITLE:=LuCI support for bmtedge
|
|
LUCI_PKGARCH:=all
|
|
LUCI_DEPENDS:=+lsblk +docker +dockerd +luci-lib-taskd
|
|
|
|
define Package/luci-app-bmtedge/conffiles
|
|
/etc/config/bmtedge
|
|
endef
|
|
|
|
# prerm
|
|
# postrm
|
|
define Package/luci-app-bmtedge/prerm
|
|
#!/bin/sh
|
|
/root/usr/libexec/istorec/bmtedge.sh rm
|
|
exit 0
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|