-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (27 loc) · 931 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (27 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# 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
$(if $(wildcard $(CURDIR)/htdocs/luci-static/material3/cascade.css),,\
$(error Missing htdocs/luci-static/material3/cascade.css. Make sure to run 'bun build:css' in the package directory before building the package.))
LUCI_PKGARCH:=all
LUCI_TITLE:=Material 3 Theme
LUCI_DESCRIPTION:=Material Design 3 theme for OpenWrt LuCI
LUCI_DEPENDS:=+luci-base
LUCI_MINIFY_CSS:=0
PKG_VERSION:=0.1
PKG_RELEASE:=20260703
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.Material3Dark
uci -q delete luci.themes.Material3Light
uci commit luci
}
endef
include $(TOPDIR)/feeds/luci/luci.mk
# call BuildPackage - OpenWrt buildroot signature