summaryrefslogtreecommitdiffhomepage
path: root/dub.json
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2022-11-23 22:12:48 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2022-12-11 17:31:37 -0500
commitfc49148876e94924d4218b078c212578bbec9c10 (patch)
treec4940ecf228b10cb89f47b2da000365d5bbcc4c6 /dub.json
sort how you want this to be
Diffstat (limited to 'dub.json')
-rw-r--r--dub.json87
1 files changed, 87 insertions, 0 deletions
diff --git a/dub.json b/dub.json
new file mode 100644
index 0000000..2156289
--- /dev/null
+++ b/dub.json
@@ -0,0 +1,87 @@
+{
+ "authors": [
+ "Ralph Amissah"
+ ],
+ "copyright": "Copyright © 2015 - 2022 Ralph Amissah",
+ "name": "spine_search",
+ "version": "0.12.0",
+ "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://code.dlang.org/packages/arsd-official",
+ "authors": [ "Adam Ruppee" ],
+ "copyright": "Copyright 2011-18 Adam Ruppee",
+ "license": "BSL-1.0",
+ "sourcePaths": [ "./src/ext_depends_cgi/arsd" ],
+ "importPaths": [ "./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" ],
+ "importPaths": [ "./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"
+ }
+ ]
+}