moar subpackages

This commit is contained in:
Adam D. Ruppe 2017-07-22 22:17:27 -04:00
parent c1ced1eadd
commit 28e9587730
1 changed files with 57 additions and 18 deletions

View File

@ -2,16 +2,7 @@
"name": "arsd-official",
"targetType": "none",
"sourcePaths": ["."],
"dependencies": {
"arsd-official:simpledisplay":"~master",
"arsd-official:minigui":"~master",
"arsd-official:dom":"~master",
"arsd-official:cgi":"~master",
"arsd-official:http":"~master",
"arsd-official:script":"~master",
"arsd-official:terminal":"~master"
},
"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\".",
"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": [
{
@ -19,15 +10,16 @@
"description": "Window creation and basic drawing",
"targetType": "sourceLibrary",
"libs-posix": ["X11", "Xext", "GL", "GLU"],
"libs-windows": ["gdi32"],
"libs-windows": ["gdi32", "opengl32", "glu32"],
"configurations": [
{
"name": "normal"
},
{
"name": "with-opengl",
"versions": ["with_opengl"],
"libs-windows": ["opengl32", "glu32"]
"name": "without-opengl",
"versions": ["without_opengl"],
"libs-windows": ["gdi32"],
"libs-posix": ["X11", "Xext"]
}
],
"sourceFiles": ["simpledisplay.d", "color.d"]
@ -37,19 +29,33 @@
"description": "Small GUI widget library for Windows and Linux",
"targetType": "sourceLibrary",
"libs-posix": ["X11", "Xext", "GL", "GLU"],
"libs-windows": ["gdi32"],
"libs-windows": ["gdi32", "opengl32", "glu32"],
"configurations": [
{
"name": "normal"
},
{
"name": "with-opengl",
"versions": ["with_opengl"],
"libs-windows": ["opengl32", "glu32"]
"name": "without-opengl",
"versions": ["without_opengl"],
"libs-windows": ["gdi32"],
"libs-posix": ["X11", "Xext"]
}
],
"sourceFiles": ["simpledisplay.d", "color.d", "minigui.d"]
},
{
"name": "email",
"description": "Email helper library, both sending MIME messages and parsing incoming mbox/maildir messages",
"targetType": "sourceLibrary",
"sourceFiles": ["email.d", "htmltotext.d", "dom.d", "characterencodings.d"]
},
{
"name": "image_files",
"description": "Image file format support - PNG read/write, JPEG, TGA, BMP read.",
"targetType": "sourceLibrary",
"sourceFiles": ["color.d", "image.d", "png.d", "bmp.d", "jpeg.d", "targa.d"]
},
{
"name": "dom",
"description": "HTML tag soup DOM library",
@ -62,6 +68,33 @@
"targetType": "sourceLibrary",
"sourceFiles": ["cgi.d"]
},
{
"name": "mysql",
"description": "MySQL client library. Wraps the official C library with my database.d interface.",
"targetType": "sourceLibrary",
"sourceFiles": ["database.d","mysql.d"]
},
{
"name": "postgres",
"description": "Postgresql client library. Wraps the libpq C library with my database.d interface.",
"targetType": "sourceLibrary",
"sourceFiles": ["database.d","postgres.d"]
},
{
"name": "sqlite",
"description": "sqlite wrapper. Wraps the official C library with my database.d interface.",
"targetType": "sourceLibrary",
"sourceFiles": ["database.d","sqlite.d"]
},
{
"name": "mssql",
"description": "Microsoft SQL Server client library. Wraps the official ODBC library with my database.d interface.",
"targetType": "sourceLibrary",
"sourceFiles": ["database.d","mssql.d"]
},
{
"name": "http",
"description": "HTTP client library",
@ -70,6 +103,12 @@
"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",