generated from tom-tan/dlang-for-remote-container-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dub.json
43 lines (43 loc) · 1.04 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
{
"authors": [
"Tomoya Tanjo"
],
"buildTypes": {
"release-static": {
"buildOptions": [
"releaseMode",
"inline",
"optimize"
],
"dflags-posix-ldc": [
"-static"
],
"preBuildCommands-posix": [
"test -f $ROOT_PACKAGE_DIR/resources/license-musl.txt || wget -O $ROOT_PACKAGE_DIR/resources/license-musl.txt https://git.musl-libc.org/cgit/musl/plain/COPYRIGHT"
]
}
},
"sourceFiles": [
"source/shaft/evaluator/engine/njs_d.c"
],
"preBuildCommands": [
"./gen-version.sh > resources/version",
"cp LICENSE resources/license-shaft.txt",
"cp $NJS_BASE/doc/LICENSE resources/license-njs.txt",
"touch resources/license-musl.txt"
],
"lflags": ["-lnjs", "-lpcre2-8"],
"stringImportPaths": [
"resources"
],
"copyright": "Copyright © 2022, Tomoya Tanjo",
"dependencies": {
"cwl-d": "~>0.3.1"
},
"description": "A workflow engine for CommandLineTool in local machine",
"homepage": "https://github.com/tom-tan/shaft",
"license": "Apache-2.0",
"name": "shaft",
"targetPath": "bin",
"targetType": "executable"
}