-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdb.cabal
136 lines (128 loc) · 2.97 KB
/
mdb.cabal
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: mdb
version: 0.1.0.0
synopsis: Media Database
-- description:
license: Apache-2.0
license-file: LICENSE
author: Matthias Treydte
maintainer: mt@waldheinz.de
-- copyright:
-- category:
build-type: Custom
-- extra-source-files:
cabal-version: >=1.10
data-files:
files/htdocs/index.html
files/sql/*.sql
flag apigen
description: Build the api-gen command line utility
default: False
manual: True
library
default-language: Haskell2010
hs-source-dirs: src/lib
ghc-options: -Wall -O2
exposed-modules:
Paths_mdb
Mdb.Album
Mdb.CmdLine
Mdb.Database
Mdb.Database.Album
Mdb.Database.Person
Mdb.Database.User
Mdb.File
Mdb.Image
Mdb.Serve
Mdb.Serve.Auth
Mdb.Serve.Image
Mdb.Serve.Resource.Album
Mdb.Serve.Resource.File
Mdb.Serve.Resource.Person
Mdb.Serve.Resource.Serial
Mdb.Serve.Resource.User
Mdb.Serve.Resource.Utils
Mdb.Serve.RestApi
Mdb.Serve.Thumbs
Mdb.Serve.TranscodeSpec
Mdb.Serve.Utils
Mdb.Serve.Video
Mdb.Status
Mdb.TvShow
Mdb.Types
build-depends:
base >=4.6,
aeson,
attoparsec,
base16-bytestring,
blaze-builder,
bytestring >= 0.10,
bytestring-conversion,
conduit,
conduit-extra,
cookie,
directory >= 1.2,
either,
exceptions,
filepath >= 1.3,
ffmpeg-light >= 0.8,
generic-aeson,
http-conduit,
http-types,
imagemagick,
json-schema,
mime-types,
monad-control,
monad-logger,
mtl,
optparse-applicative,
process,
pureMD5,
regex-posix,
resource-pool,
rest-core >= 0.39,
rest-wai,
scrypt,
SHA >= 1.6,
sqlite-simple >= 0.4,
text >= 0.11,
time,
transformers,
transformers-base,
unix,
utf8-string,
vault,
wai,
wai-app-static,
wai-extra,
wai-predicates,
wai-routing,
wai-session,
warp,
xml
executable mdb
main-is: Main.hs
ghc-options: -O2 -Wall -threaded -with-rtsopts=-N
hs-source-dirs: src/main
default-language: Haskell2010
build-depends:
base,
bytestring,
directory,
exceptions,
ffmpeg-light,
imagemagick,
mdb,
monad-logger,
scrypt
executable mdb-api-gen
main-is: RestApiMain.hs
hs-source-dirs: src/main
default-language: Haskell2010
if flag(apigen)
buildable: True
else
buildable: False
build-depends:
base,
mdb,
rest-gen