-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
60 lines (58 loc) · 2.2 KB
/
dub.json
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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "acos5_gui",
"description": "Administration tool for ACOS5, based on driver acos5",
"license": "GNU General Public License v2.0",
"copyright": "Copyright © 2018-, Carsten Blüggel",
"authors": ["Carsten Blüggel"],
"homepage": "https://github.com/carblue/acos5_gui",
"dependencies": {
"pkcs11": "~>2.40.0-alpha.4",
"iup": "~>3.27.0-alpha.2",
"openssl": "~>3.3.3",
"tasn1": { "path": "tasn1" },
"opensc": { "path": "opensc" }
},
"subConfigurations": {
"pkcs11": "derelict",
"opensc": "deimos"
},
"systemDependencies": "IUP-Portable User Interface shared libraries installed, OpenSC installation, acos5 driver and acos5_pkcs15 libraries installed, opensc.conf configured appropriately; (not yet required: for gettext the exports available from libintl.so or GLib)",
"unused-libs-posix": ["iupimglib"],
"sourceFiles-windows-x86_64": [
"ole32.lib",
"oleaut32.lib",
"uuid.lib"
],
"targetName": "acos5_gui",
"mainSourceFile": "source/acos5_gui.d",
"dflags-posix-dmd": ["-defaultlib=libphobos2.so"],
"dflags-posix-ldc": ["-defaultlib=phobos2-ldc-shared,druntime-ldc-shared"],
"suspended-dflags-posix-gdc": ["failure", "with", "not-yet-available", "std.range.package: slide (remove private at 'Explicitly set to private to delay the release until 2.076')"],
"lflags": ["--no-undefined", "--as-needed", "--version-script=acos5_gui.ver"],
"suspended-lflags-posix-ldc": ["-rpath=$HOME/Downloads/dlang/ldc2-1.24.0-linux-x86_64/lib"],
"postBuildCommands": ["strip --strip-unneeded $$DUB_TARGET_NAME"],
"alternatives-versions": ["I18N to be used only with gettext/libintl.so available", "OPENSC_VERSION_UPCOMING to be used only with OPENSC_VERSION_LATEST together with OpenSC v0.21.0", "not yet ready: USE_LIBRESSL"],
"versions-posix": ["I18N"],
"versions-windows": [],
"configurations": [
{
"name": "application",
"targetType": "executable",
"excludedSourceFiles": [],
"versions": [],
"dflags": []
},
{
"name": "travis",
"targetType": "executable",
"excludedSourceFiles": [],
"dflags": ["-dip1000", "-preview=dip1000", "-preview=markdown"],
"buildRequirements": ["disallowDeprecations"]
},
{
"name": "unittest",
"targetType": "library",
"dflags": []
}
]
}