mirror of
https://github.com/kenzok8/small-package
synced 2025-01-07 07:06:58 +08:00
25 lines
493 B
Makefile
Executable File
25 lines
493 B
Makefile
Executable File
# Copyright (C) 2020-2021 Hyy2001X <https://github.com/Hyy2001X>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-webd
|
|
PKG_VERSION:=1.4
|
|
PKG_RELEASE:=1
|
|
|
|
LUCI_TITLE:=LuCI support for Webd Netdisk
|
|
LUCI_PKGARCH:=all
|
|
|
|
LUCI_DEPENDS:= \
|
|
+PACKAGE_$(PKG_NAME)_INCLUDE_WEBD_BINARY:webd
|
|
|
|
define Package/$(PKG_NAME)/config
|
|
|
|
config PACKAGE_$(PKG_NAME)_INCLUDE_WEBD_BINARY
|
|
bool "Include webd Binary"
|
|
default y
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|