mirror of https://github.com/adamdruppe/arsd.git
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "arsd-official",
|
|
"targetType": "sourceLibrary",
|
|
"sourcePaths": ["dummy"],
|
|
"dependencies": {},
|
|
"description": "A container of various subpackages that do lots of different things. Do not use this as a package itself, instead use the subpackages for what you need (or better yet, ditch dub and do things the simple, reliable way of dmd *.d). So make your dependency like \"arsd-official:simpledisplay\" rather than \"arsd-official\".",
|
|
"license":"BSL-1.0",
|
|
"subPackages": [
|
|
{
|
|
"name": "simpledisplay",
|
|
"description": "Window creation and basic drawing",
|
|
"targetType": "sourceLibrary",
|
|
"libs-posix": ["X11", "Xext", "GL", "GLU"],
|
|
"libs-windows": ["gdi32"],
|
|
"configurations": [
|
|
{
|
|
"name": "normal"
|
|
},
|
|
{
|
|
"name": "with-opengl",
|
|
"versions": ["with_opengl"],
|
|
"libs-windows": ["opengl32", "glu32"]
|
|
}
|
|
],
|
|
"sourceFiles": ["simpledisplay.d", "color.d"]
|
|
},
|
|
{
|
|
"name": "dom",
|
|
"description": "HTML tag soup DOM library",
|
|
"targetType": "sourceLibrary",
|
|
"sourceFiles": ["dom.d", "characterencodings.d"]
|
|
},
|
|
{
|
|
"name": "cgi",
|
|
"description": "web server library with cgi, fastcgi, scgi, and embedded http server support",
|
|
"targettype": "sourcelibrary",
|
|
"sourcefiles": ["cgi.d"]
|
|
},
|
|
{
|
|
"name": "HTTP client",
|
|
"description": "HTTP client library",
|
|
"libs-posix": ["crypto", "ssl"],
|
|
"versions-posix": ["with_openssl"],
|
|
"targettype": "sourcelibrary",
|
|
"sourcefiles": ["http2.d"]
|
|
},
|
|
{
|
|
"name": "script",
|
|
"description": "Small Javascript-like script interpreter with easy D API",
|
|
"targettype": "sourcelibrary",
|
|
"sourcefiles": ["script.d", "jsvar.d"]
|
|
},
|
|
{
|
|
"name": "terminal",
|
|
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",
|
|
"targetType": "sourceLibrary",
|
|
"sourceFiles": ["terminal.d"]
|
|
}
|
|
|
|
]
|
|
}
|