mirror of
https://github.com/sirpdboy/luci-theme-kucat.git
synced 2025-01-08 11:57:54 +08:00
30 lines
539 B
Makefile
30 lines
539 B
Makefile
#
|
|
# Copyright 2019-2023 sirpdboy
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
THEME_NAME:=kucat
|
|
THEME_TITLE:=Kucat Theme
|
|
|
|
PKG_NAME:=luci-theme-$(THEME_NAME)
|
|
LUCI_TITLE:=Kucat Theme by sirpdboy
|
|
LUCI_DEPENDS:= +curl
|
|
PKG_VERSION:=1.4.8
|
|
PKG_RELEASE:=20231217
|
|
|
|
|
|
|
|
define Package/luci-theme-$(THEME_NAME)/postinst
|
|
#!/bin/sh
|
|
|
|
rm -Rf /var/luci-modulecache
|
|
rm -Rf /var/luci-indexcache
|
|
exit 0
|
|
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
# call BuildPackage - OpenWrt buildroot signature
|