mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-13 02:45:24 +08:00
33 lines
805 B
Makefile
33 lines
805 B
Makefile
#
|
|
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=Material3 Theme
|
|
LUCI_DEPENDS:=
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=20250617
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
|
|
define Package/luci-theme-material3/postrm
|
|
#!/bin/sh
|
|
[ -n "$${IPKG_INSTROOT}" ] || {
|
|
uci -q delete luci.themes.Material3
|
|
uci -q delete luci.themes.Material3Blue
|
|
uci -q delete luci.themes.Material3Green
|
|
uci -q delete luci.themes.Material3Red
|
|
uci set luci.main.mediaurlbase='/luci-static/bootstrap'
|
|
# uci -q delete luci.themes.Material3Dark
|
|
# uci -q delete luci.themes.Material3Light
|
|
uci commit luci
|
|
}
|
|
endef
|
|
LUCI_MINIFY_CSS:=0
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|