mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-27 16:51:15 +08:00
23 lines
538 B
Makefile
23 lines
538 B
Makefile
# Copyright (C) 2020 Gyj1109
|
||
# 适配 OpenWrt 25.12 修改版
|
||
|
||
include $(TOPDIR)/rules.mk
|
||
|
||
PKG_NAME:=luci-app-syncthing
|
||
PKG_VERSION:=1.0
|
||
PKG_RELEASE:=3
|
||
|
||
LUCI_TITLE:=LuCI support for Syncthing
|
||
LUCI_PKGARCH:=all
|
||
# 适配 25.12:确保安装了 syncthing 后,LuCI 界面能正确拉起
|
||
LUCI_DEPENDS:=+syncthing
|
||
|
||
include $(TOPDIR)/feeds/luci/luci.mk
|
||
|
||
# 明确定义配置文件的归属,这对 25.12 的 apk 管理器非常重要
|
||
define Package/$(PKG_NAME)/conffiles
|
||
/etc/config/syncthing
|
||
endef
|
||
|
||
$(eval $(call BuildPackage,$(PKG_NAME)))
|