aboutsummaryrefslogtreecommitdiffhomepage
path: root/dub.json
blob: 86c9ec908593a4c86b9f35e05a880bf4aa83b672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
  "authors": [
                             "Ralph Amissah"
  ],
  "copyright":                 "Copyright © 2002, 2024 Ralph Amissah",
  "name":                      "spine_search",
  "version":                   "0.14.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",
  "buildTypes": {
    "dmd": {
      "dflags":                [ "-J=views", "-I=src" ],
      "buildOptions":          [ "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "ldc2": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "ldmd2": {
      "dflags":                [ "-O2", "-boundscheck=on", "-J=views", "-I=src", "-color=on" ],
      "buildOptions":          [ "optimize", "inline", "verbose" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "gdc": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    },
    "gdmd": {
      "dflags":                [ "-O2", "-J=views", "-I=src" ],
      "buildOptions":          [ "optimize", "inline" ],
      "buildRequirements":     [ "allowWarnings" ]
    }
  },
  "dependencies": {
    "spine_search:arsd.cgi":   "*",
    "spine_search:d2sqlite3":  "*"
  },
  "subPackages": [
    {
      "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/d2sqlite3/source" ],
      "importPaths":    [ "./src/ext_depends/d2sqlite3/source" ],
      "configurations": [
        {
          "name":                "d2sqlite3",
          "targetType":          "library",
          "systemDependencies":  "SQLite version >= 3.8.7",
          "libs":                [ "sqlite3" ],
          "excludedSourceFiles": [ "source/tests.d" ]
        }
      ]
    },
    {
      "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/arsd" ],
      "importPaths":    [ "./src/ext_depends/arsd" ],
      "configurations": [
        {
          "name":                "cgi",
          "targetType":          "library",
          "systemDependencies":  "Arsd version >= 0.8.7"
        }
      ]
    }
  ],
  "configurations": [
    {
      "name":                  "default",
      "targetName":            "spine_search"
    },
    {
      "name":                  "ldc2",
      "targetName":            "spine-search-ldc.cgi"
    },
    {
      "name":                  "ldmd2",
      "targetName":            "spine-search-ldc.cgi"
    },
    {
      "name":                  "dmd",
      "targetName":            "spine-search-dmd.cgi"
    },
    {
      "name":                  "gdc",
      "targetName":            "spine-search-gdc.cgi"
    }
  ]
}