sirpdboy-package/luci-app-advanced/Makefile
2023-01-28 23:32:09 +08:00

36 lines
755 B
Makefile

# Copyright (C) 2019 sirpdboy <https://github.com/sirpdboy/luci-app-advanced/>
#
#
#
# This is free software, licensed under the Apache License, Version 2.0 .
#
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/package.mk
PKG_NAME:=luci-app-advanced
PKG_VERSION:=1.21
PKG_RELEASE:=20230128
define Package/$(PKG_NAME)
SECTION:=luci
CATEGORY:=LuCI
SUBMENU:=3. Applications
DEPENDS:=
TITLE:=LuCI Support for advanced and filebrowser
PKGARCH:=all
endef
define Build/Compile
endef
define Package/$(PKG_NAME)/install
$(INSTALL_DIR) $(1)/usr/lib/lua/luci
$(CP) ./luasrc/* $(1)/usr/lib/lua/luci
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./root/etc/config/advanced $(1)/etc/config/
endef
$(eval $(call BuildPackage,$(PKG_NAME)))