-
Notifications
You must be signed in to change notification settings - Fork 3
/
dub.json
24 lines (23 loc) · 973 Bytes
/
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
{
"name": "libcerf",
"description": "Self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.",
"homepage": "http://github.com/9il/libcerf",
"copyright": "Copyright © 2012 Massachusetts Institute of Technology, © 2013 Forschungszentrum Jülich GmbH, © 2014 Ilya Yaroshenko",
"authors": [
"Steven G. Johnson",
"Joachim Wuttke",
"Ilya Yaroshenko"
],
"license": "Subject to the terms of the MIT license, as written in the included LICENSE.txt file.",
"buildTypes": {
"DSddox": {
"buildOptions": ["syntaxOnly"],
"dflags": ["-c", "-Df__dummy.html", "-Xfdocs.json"],
"postBuildCommands": [
"rm -rf site/api",
"ddox filter --min-protection=Protected docs.json",
"ddox generate-html --navigation-type=ModuleTree docs.json site/api"
]
}
}
}