mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-02 20:17:35 +08:00
52 lines
1.4 KiB
Lua
52 lines
1.4 KiB
Lua
package = "apisix-dev"
|
|
version = "1.0-0"
|
|
supported_platforms = {"linux", "macosx"}
|
|
|
|
source = {
|
|
url = "git://github.com/iresty/apisix",
|
|
branch = "master",
|
|
}
|
|
|
|
description = {
|
|
summary = "APISIX is a cloud-native microservices API gateway, delivering the ultimate performance, security, open source and scalable platform for all your APIs and microservices.",
|
|
homepage = "https://github.com/iresty/apisix",
|
|
license = "Apache License 2.0",
|
|
maintainer = "Yuansheng Wang <membphis@gmail.com>"
|
|
}
|
|
|
|
dependencies = {
|
|
"lua-resty-libr3 = 1.0",
|
|
"lua-resty-template = 1.9",
|
|
"lua-resty-etcd = 0.6",
|
|
"lua-resty-balancer = 0.02rc5",
|
|
"lua-resty-ngxvar = 0.3",
|
|
"lua-resty-jit-uuid = 0.0.7",
|
|
"rapidjson = 0.6.1",
|
|
"lua-resty-healthcheck-iresty = 1.0.1",
|
|
"lua-resty-jwt = 0.2.0",
|
|
"lua-resty-cookie = 0.1.0",
|
|
"lua-resty-session = 2.24",
|
|
"opentracing-openresty = 0.1",
|
|
"lua-resty-radixtree = 0.4",
|
|
"lua-resty-iputils = 0.3.0-1",
|
|
}
|
|
|
|
build = {
|
|
type = "make",
|
|
build_variables = {
|
|
CFLAGS="$(CFLAGS)",
|
|
LIBFLAG="$(LIBFLAG)",
|
|
LUA_LIBDIR="$(LUA_LIBDIR)",
|
|
LUA_BINDIR="$(LUA_BINDIR)",
|
|
LUA_INCDIR="$(LUA_INCDIR)",
|
|
LUA="$(LUA)",
|
|
},
|
|
install_variables = {
|
|
INST_PREFIX="$(PREFIX)",
|
|
INST_BINDIR="$(BINDIR)",
|
|
INST_LIBDIR="$(LIBDIR)",
|
|
INST_LUADIR="$(LUADIR)",
|
|
INST_CONFDIR="$(CONFDIR)",
|
|
},
|
|
}
|