mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 03:01:54 +08:00
26 lines
536 B
Makefile
26 lines
536 B
Makefile
#
|
|
# Copyright (C) 2008-2019 Jerrykuku
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=Design Theme (Argon Mod)
|
|
LUCI_DEPENDS:=+curl +jsonfilter
|
|
PKG_VERSION:=2.3.3
|
|
PKG_RELEASE:=1
|
|
|
|
define Package/luci-theme-design/postrm
|
|
#!/bin/sh
|
|
[ -n "$${IPKG_INSTROOT}" ] || {
|
|
uci -q delete luci.themes.Design
|
|
uci set luci.main.mediaurlbase='/luci-static/bootstrap'
|
|
uci commit luci
|
|
}
|
|
endef
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|