-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
psl-scm-0.rockspec
48 lines (44 loc) · 1.06 KB
/
psl-scm-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package = "psl"
version = "scm-0"
source = {
url = "git+https://github.com/daurnimator/lua-psl.git";
}
description = {
summary = "Bindings to libpsl, a C library that handles the Public Suffix List (PSL)";
detailed = [[
Bindings to libpsl, a C library that handles the Public Suffix List (PSL).
The PSL is a list of domains where there may be sub-domains outside of the administrator's control.
e.g. the administrator of '.com' does not manage 'github.com'.
This list has found use in many internet technologies including:
- preventing cross-domain cookie leakage
- allowance of issuing wildcard TLS certificates
More information can be found at https://publicsuffix.org/]];
homepage = "https://github.com/daurnimator/lua-psl";
license = "MIT";
}
dependencies = {}
external_dependencies = {
PSL = {
header = "libpsl.h";
library = "psl";
};
}
build = {
type = "builtin";
modules = {
psl = {
sources = "psl/psl.c";
libraries = {
"psl";
};
defines = {
};
incdirs = {
"$(PSL_INCDIR)";
};
libdirs = {
"$(PSL_LIBDIR)";
};
};
};
}