Move classes required for Lua runtime support into a new `luci-lua-runtime` package. Also replace the `luci.http` and `luci.util` classes in `luci-lib-base` with stubbed versions interacting with the ucode based runtime environment. Finally merge `luci-base-ucode` into the remainders of `luci-base`. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
19 lines
367 B
Makefile
19 lines
367 B
Makefile
#
|
|
# Copyright (C) 2019 Jo-Philipp Wich <jo@mein.io>
|
|
#
|
|
# This is free software, licensed under the Apache License, Version 2.0 .
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-compat
|
|
|
|
LUCI_TYPE:=mod
|
|
LUCI_BASENAME:=compat
|
|
|
|
LUCI_TITLE:=LuCI compatibility libraries
|
|
LUCI_DEPENDS:=+luci-lua-runtime
|
|
|
|
include ../../luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|