arsd/dub.json

163 lines
5.0 KiB
JSON

{
"name": "arsd-official",
"targetType": "none",
"sourcePaths": ["."],
"description": "A container of various subpackages that do lots of different things. You should use one of the subpackages instead of the main package in most cases, but you can try the complete package if you get duplicated dependency issues.",
"license":"BSL-1.0",
"subPackages": [
{
"name": "simpledisplay",
"description": "Window creation and basic drawing",
"targetType": "sourceLibrary",
"libs-posix": ["X11", "Xext", "GL", "GLU"],
"libs-windows": ["gdi32", "opengl32", "glu32"],
"dependencies": {"arsd-official:color_base":"*"},
"configurations": [
{
"name": "normal"
},
{
"name": "without-opengl",
"versions": ["without_opengl"],
"libs-windows": ["gdi32"],
"libs-posix": ["X11", "Xext"]
}
],
"sourceFiles": ["simpledisplay.d"]
},
{
"name": "minigui",
"description": "Small GUI widget library for Windows and Linux",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:simpledisplay":"*"},
"configurations": [
{
"name": "normal"
},
{
"name": "without-opengl",
"versions": ["without_opengl"],
"libs-windows": ["gdi32"],
"libs-posix": ["X11", "Xext"]
}
],
"sourceFiles": ["minigui.d"]
},
{
"name": "nanovega",
"description": "Vector graphics library",
"targetType": "sourceLibrary",
"dependencies": {
"arsd-official:simpledisplay":"*",
"arsd-official:image_files":"*",
"arsd-official:ttf":"*"
},
"libs-posix": ["freetype", "fontconfig"],
"sourceFiles": ["nanovega.d", "blendish.d", "svg.d"]
},
{
"name": "email",
"description": "Email helper library, both sending MIME messages and parsing incoming mbox/maildir messages",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:dom":"*"},
"sourceFiles": ["email.d", "htmltotext.d"]
},
{
"name": "image_files",
"description": "Image file format support - PNG read/write, JPEG, TGA, BMP, PCX, TGA, DDS read.",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:color_base":"*"},
"sourceFiles": ["image.d", "png.d", "bmp.d", "jpeg.d", "targa.d", "pcx.d", "dds.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": "mysql",
"description": "MySQL client library. Wraps the official C library with my database.d interface.",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:database_base":"*"},
"sourceFiles": ["mysql.d"]
},
{
"name": "postgres",
"description": "Postgresql client library. Wraps the libpq C library with my database.d interface.",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:database_base":"*"},
"sourceFiles": ["postgres.d"]
},
{
"name": "sqlite",
"description": "sqlite wrapper. Wraps the official C library with my database.d interface.",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:database_base":"*"},
"sourceFiles": ["sqlite.d"]
},
{
"name": "mssql",
"description": "Microsoft SQL Server client library. Wraps the official ODBC library with my database.d interface.",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:database_base":"*"},
"sourceFiles": ["mssql.d"]
},
{
"name": "http",
"description": "HTTP client library. Depends on OpenSSL right now on all platforms. On 32 bit Windows, you may need to get OMF openssl lib and dlls (ask me if you can't find it)",
"libs": ["crypto", "ssl"],
"versions": ["with_openssl"],
"targetType": "sourceLibrary",
"sourceFiles": ["http2.d"]
},
{
"name": "jsvar",
"description": "Javascript-like object in D, capable of json read/write/manipulation.",
"targetType": "sourceLibrary",
"sourceFiles": ["jsvar.d"]
},
{
"name": "script",
"description": "Small Javascript-like script interpreter with easy D API",
"targetType": "sourceLibrary",
"dependencies": {"arsd-official:jsvar":"*"},
"sourceFiles": ["script.d"]
},
{
"name": "terminal",
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",
"targetType": "sourceLibrary",
"sourceFiles": ["terminal.d"]
},
{
"name": "ttf",
"description": "port of stb_ttf to D",
"targetType": "sourceLibrary",
"sourceFiles": ["ttf.d"]
},
{
"name": "color_base",
"description": "Base color, point, image interface definitions",
"targetType": "sourceLibrary",
"sourceFiles": ["color.d"]
},
{
"name": "database_base",
"description": "Basic database interface definitions. Use one (or more) of the drivers like arsd-official:mysql or arsd-official:postgres instead",
"targetType": "sourceLibrary",
"sourceFiles": ["database.d"]
}
]
}