mirror of
https://github.com/brunoos/luasec.git
synced 2024-11-08 06:28:26 +01:00
106 lines
3.1 KiB
Lua
106 lines
3.1 KiB
Lua
package = "LuaSec"
|
|
version = "1.1.0-1"
|
|
source = {
|
|
url = "git+https://github.com/brunoos/luasec",
|
|
tag = "v1.1.0",
|
|
}
|
|
description = {
|
|
summary = "A binding for OpenSSL library to provide TLS/SSL communication over LuaSocket.",
|
|
detailed = "This version delegates to LuaSocket the TCP connection establishment between the client and server. Then LuaSec uses this connection to start a secure TLS/SSL session.",
|
|
homepage = "https://github.com/brunoos/luasec/wiki",
|
|
license = "MIT"
|
|
}
|
|
dependencies = {
|
|
"lua >= 5.1", "luasocket"
|
|
}
|
|
external_dependencies = {
|
|
platforms = {
|
|
unix = {
|
|
OPENSSL = {
|
|
header = "openssl/ssl.h",
|
|
library = "ssl"
|
|
}
|
|
},
|
|
windows = {
|
|
OPENSSL = {
|
|
header = "openssl/ssl.h",
|
|
}
|
|
},
|
|
}
|
|
}
|
|
build = {
|
|
type = "builtin",
|
|
copy_directories = {
|
|
"samples"
|
|
},
|
|
platforms = {
|
|
unix = {
|
|
install = {
|
|
lib = {
|
|
"ssl.so"
|
|
},
|
|
lua = {
|
|
"src/ssl.lua", ['ssl.https'] = "src/https.lua"
|
|
}
|
|
},
|
|
modules = {
|
|
ssl = {
|
|
defines = {
|
|
"WITH_LUASOCKET", "LUASOCKET_DEBUG",
|
|
},
|
|
incdirs = {
|
|
"$(OPENSSL_INCDIR)", "src/", "src/luasocket",
|
|
},
|
|
libdirs = {
|
|
"$(OPENSSL_LIBDIR)"
|
|
},
|
|
libraries = {
|
|
"ssl", "crypto"
|
|
},
|
|
sources = {
|
|
"src/options.c", "src/config.c", "src/ec.c",
|
|
"src/x509.c", "src/context.c", "src/ssl.c",
|
|
"src/luasocket/buffer.c", "src/luasocket/io.c",
|
|
"src/luasocket/timeout.c", "src/luasocket/usocket.c"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
windows = {
|
|
install = {
|
|
lib = {
|
|
"ssl.dll"
|
|
},
|
|
lua = {
|
|
"src/ssl.lua", ['ssl.https'] = "src/https.lua"
|
|
}
|
|
},
|
|
modules = {
|
|
ssl = {
|
|
defines = {
|
|
"WIN32", "NDEBUG", "_WINDOWS", "_USRDLL", "LSEC_EXPORTS", "BUFFER_DEBUG", "LSEC_API=__declspec(dllexport)",
|
|
"WITH_LUASOCKET", "LUASOCKET_DEBUG",
|
|
"LUASEC_INET_NTOP", "WINVER=0x0501", "_WIN32_WINNT=0x0501", "NTDDI_VERSION=0x05010300"
|
|
},
|
|
libdirs = {
|
|
"$(OPENSSL_LIBDIR)",
|
|
"$(OPENSSL_BINDIR)",
|
|
},
|
|
libraries = {
|
|
"libssl32MD", "libcrypto32MD", "ws2_32"
|
|
},
|
|
incdirs = {
|
|
"$(OPENSSL_INCDIR)", "src/", "src/luasocket"
|
|
},
|
|
sources = {
|
|
"src/options.c", "src/config.c", "src/ec.c",
|
|
"src/x509.c", "src/context.c", "src/ssl.c",
|
|
"src/luasocket/buffer.c", "src/luasocket/io.c",
|
|
"src/luasocket/timeout.c", "src/luasocket/wsocket.c"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|