aboutsummaryrefslogtreecommitdiffhomepage
path: root/sundry/spine_search_cgi/dub.json
diff options
context:
space:
mode:
Diffstat (limited to 'sundry/spine_search_cgi/dub.json')
-rw-r--r--sundry/spine_search_cgi/dub.json88
1 files changed, 88 insertions, 0 deletions
diff --git a/sundry/spine_search_cgi/dub.json b/sundry/spine_search_cgi/dub.json
new file mode 100644
index 0000000..a07db56
--- /dev/null
+++ b/sundry/spine_search_cgi/dub.json
@@ -0,0 +1,88 @@
+{
+ "authors": [
+ "Ralph Amissah"
+ ],
+ "copyright": "Copyright © 2015 - 2021 Ralph Amissah",
+ "name": "spine_search",
+ "version": "0.11.3",
+ "description": "cgi search for spine, a sisu like document parser",
+ "homepage": "https://sisudoc.org",
+ "license": "AGPL-3.0+",
+ "targetPath": "./cgi-bin",
+ "sourcePaths": [ "./src" ],
+ "stringImportPaths": [ "./views" ],
+ "buildRequirements": [ "allowWarnings" ],
+ "targetType": "executable",
+ "platforms": [ "posix" ],
+ "buildTypes": {
+ "dmd": {
+ "dflags": [ "-J=views", "-I=src" ],
+ "buildOptions": [ "verbose", "inline" ],
+ "buildRequirements": [ "allowWarnings" ]
+ },
+ "ldc": {
+ "dflags": [ "-O2", "-J=views", "-I=src" ],
+ "buildOptions": [ "verbose", "optimize", "inline" ],
+ "buildRequirements": [ "allowWarnings" ]
+ }
+ },
+ "dependencies": {
+ "spine_search:arsd.cgi": "*",
+ "spine_search:d2sqlite3": "*"
+ },
+ "subPackages": [
+ {
+ "name": "arsd.cgi",
+ "description": "cgi",
+ "homepage": "https://github.com/dlang-community/d2sqlite3",
+ "authors": [ "Aadam Ruppee" ],
+ "copyright": "Copyright 2011-18 Aadam Ruppee",
+ "license": "BSL-1.0",
+ "sourcePaths": [ "./src/ext_depends_cgi/arsd" ],
+ "configurations": [
+ {
+ "name": "cgi",
+ "cgi": "with-lib",
+ "targetType": "library",
+ "systemDependencies": "Arsd version >= 0.8.7"
+ }
+ ]
+ },
+ {
+ "name": "d2sqlite3",
+ "description": "A thin wrapper around SQLite 3",
+ "homepage": "https://github.com/dlang-community/d2sqlite3",
+ "authors": [ "Nicolas Sicard", "Other contributors: see Github repo" ],
+ "copyright": "Copyright 2011-18 Nicolas Sicard",
+ "license": "BSL-1.0",
+ "sourcePaths": [ "./src/ext_depends_cgi/d2sqlite3/source" ],
+ "configurations": [
+ {
+ "name": "d2sqlite3",
+ "d2sqlite3": "with-lib",
+ "targetType": "library",
+ "systemDependencies": "SQLite version >= 3.8.7",
+ "libs": [ "sqlite3" ],
+ "excludedSourceFiles": [ "source/tests.d" ]
+ }
+ ]
+ }
+ ],
+ "configurations": [
+ {
+ "name": "default",
+ "targetName": "spine_search"
+ },
+ {
+ "name": "ldc",
+ "targetName": "spine-search-ldc.cgi"
+ },
+ {
+ "name": "dmd",
+ "targetName": "spine-search-dmd.cgi"
+ }
+ ],
+ "subConfigurations": {
+ "d2sqlite3": "with-lib"
+ }
+}