Skip to content

Commit dd9d0c3

Browse files
authored
feat: release v0.2.3 (#23)
1 parent a8221cc commit dd9d0c3

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ LDFLAGS_ALL = $(LIBFLAG) $(LDFLAGS) $(XMLSEC1_LDFLAGS)
2424
build: $(XMLSEC1_STATIC_LIBS) saml.so
2525

2626
$(XMLSEC1_STATIC_LIBS):
27-
wget --no-check-certificate https://www.aleksey.com/xmlsec/download/older-releases/xmlsec1-$(XMLSEC_VER).tar.gz
27+
wget https://github.com/api7/xmlsec-fork/releases/download/$(XMLSEC_VER)/xmlsec1-$(XMLSEC_VER).tar.gz
2828
tar zxf xmlsec1-$(XMLSEC_VER).tar.gz
2929
cd xmlsec1-$(XMLSEC_VER); CFLAGS="-std=c99" ./configure --with-openssl=$(OPENSSL_DIR)/ --with-pic --disable-crypto-dl --disable-apps-crypto-dl; make
3030

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package = "lua-resty-saml"
2+
version = "0.2.3-0"
3+
source = {
4+
url = "git://github.com/api7/lua-resty-saml",
5+
tag = "v0.2.3"
6+
}
7+
8+
description = {
9+
summary = "SAML 2.0 auth lib for Nginx + Lua",
10+
homepage = "https://github.com/api7/lua-resty-saml",
11+
license = "Apache License 2.0",
12+
}
13+
14+
dependencies = {
15+
"api7-lua-resty-http = 0.2.0",
16+
"lua-resty-jit-uuid = 0.0.7",
17+
"lua-resty-cookie = 0.1.0",
18+
}
19+
20+
build = {
21+
type = "make",
22+
build_variables = {
23+
CFLAGS="$(CFLAGS)",
24+
LIBFLAG="$(LIBFLAG)",
25+
LUA_LIBDIR="$(LUA_LIBDIR)",
26+
LUA_BINDIR="$(LUA_BINDIR)",
27+
LUA_INCDIR="$(LUA_INCDIR)",
28+
LUA="$(LUA)",
29+
OPENSSL_DIR="$(OPENSSL_DIR)",
30+
},
31+
install_variables = {
32+
INST_PREFIX="$(PREFIX)",
33+
INST_BINDIR="$(BINDIR)",
34+
INST_LIBDIR="$(LIBDIR)",
35+
INST_LUADIR="$(LUADIR)",
36+
INST_CONFDIR="$(CONFDIR)",
37+
},
38+
}

0 commit comments

Comments
 (0)