]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
Use time-http
[Rakka.git] / Rakka.cabal
1 Name:          Rakka
2 Synopsis:      RESTful Wiki engine with Subversion backend
3 Description:
4     Rakka is a RESTful wiki engine with Subversion backend. Its syntax
5     is similar to MediaWiki.
6 Version:       0.1
7 License:       PublicDomain
8 Author:        PHO <pho at cielonegro dot org>
9 Maintainer:    PHO <pho at cielonegro dot org>
10 Stability:     experimental
11 Homepage:      http://rakka.cielonegro.org/
12 Category:      Web
13 Tested-With:   GHC == 6.12.1
14 Cabal-Version: >= 1.6
15 Build-Type:    Custom
16
17 Data-Files:
18     defaultPages/Feed.xml
19     defaultPages/Help/SampleImage/Large.xml
20     defaultPages/Help/SampleImage/Small.xml
21     defaultPages/Help/Syntax.xml
22     defaultPages/MainPage.xml
23     defaultPages/PageTitle.xml
24     defaultPages/SideBar/Left.xml
25     defaultPages/SideBar/Right.xml
26     defaultPages/StyleSheet/CieloNegro/Logo.xml
27     defaultPages/StyleSheet/CieloNegro/Moon.xml
28     defaultPages/StyleSheet/CieloNegro.xml
29     defaultPages/StyleSheet/Default.xml
30     rc.d/NetBSD/rakka.in
31     schemas/rakka-page-1.0.rng
32
33 Extra-Source-Files:
34     Rakka.buildinfo.in
35     configure
36     configure.ac
37     js/Makefile
38     js/base.js
39     js/base64.js
40     js/editPage.js
41     js/hashedParam.js
42     js/hexDump.js
43     js/jquery-1.2.6.js
44     js/jquery-dom.js
45     js/localFile.js
46     js/login.js
47     js/parseuri.js
48     js/redirection.js
49     js/screen.js
50     js/search.js
51     js/systemConfig.js
52     js/uri.js
53     tests/RakkaUnitTest.hs
54     tests/WikiParserTest.hs
55
56 Source-Repository head
57     Type: git
58     Location: git://git.cielonegro.org/Rakka.git
59
60 Flag build-test-suite
61     Description: Build the test suite.
62     Default:     False
63
64 Executable rakka
65     Build-Depends:
66         FileManip       == 0.3.*,
67         HsHyperEstraier == 0.3.*,
68         HsOpenSSL       == 0.8.*,
69         HsSVN           == 0.4.*,
70         Lucu            == 0.6.*,
71         base            == 4.2.*,
72         bytestring      == 0.9.*,
73         containers      == 0.3.*,
74         dataenc         == 0.13.*,
75         directory       == 1.0.*,
76         filepath        == 1.1.*,
77         utf8-string     == 0.3.*,
78         hslogger        == 1.0.*,
79         hxt             == 8.5.*,
80         hxt-xpath       == 8.5.*,
81         magic           == 1.0.*,
82         mtl             == 1.1.*,
83         network         == 2.2.*,
84         parsec          == 3.0.*,
85         stm             == 2.1.*,
86         time            == 1.1.*,
87         time-http       == 0.1.*,
88         time-w3c        == 0.1.*,
89         unix            == 2.4.*,
90         zlib            == 0.5.*
91
92     Main-Is:
93         Main.hs
94
95     Other-Modules:
96         Rakka.Attachment
97         Rakka.Authorization
98         Rakka.Environment
99         Rakka.Page
100         Rakka.Resource
101         Rakka.Resource.CheckAuth
102         Rakka.Resource.DumpRepos
103         Rakka.Resource.Index
104         Rakka.Resource.JavaScript
105         Rakka.Resource.Object
106         Rakka.Resource.PageEntity
107         Rakka.Resource.Render
108         Rakka.Resource.Search
109         Rakka.Resource.SystemConfig
110         Rakka.Resource.TrackBack
111         Rakka.Resource.Users
112         Rakka.Storage
113         Rakka.Storage.DefaultPage
114         Rakka.Storage.Repos
115         Rakka.Storage.Types
116         Rakka.Storage.Impl
117         Rakka.SystemConfig
118         Rakka.TrackBack
119         Rakka.Utils
120         Rakka.Validation
121         Rakka.Wiki
122         Rakka.Wiki.Interpreter
123         Rakka.Wiki.Interpreter.Base
124         Rakka.Wiki.Interpreter.Image
125         Rakka.Wiki.Interpreter.PageList
126         Rakka.Wiki.Interpreter.Trackback
127         Rakka.Wiki.Interpreter.Outline
128         Rakka.Wiki.Engine
129         Rakka.Wiki.Formatter
130         Rakka.Wiki.Parser
131
132     Extensions:
133         Arrows
134         ExistentialQuantification
135         ScopedTypeVariables
136         DeriveDataTypeable
137         FlexibleInstances
138
139     GHC-Options:
140         -Wall -threaded
141
142 Executable RakkaUnitTest
143     if flag(build-test-suite)
144         Buildable: True
145         Build-Depends: HUnit
146     else
147         Buildable: False
148
149     Main-Is:
150         RakkaUnitTest.hs
151
152     Hs-Source-Dirs:
153         ., tests
154
155     Other-Modules:
156         WikiParserTest
157
158     Extensions:
159         Arrows
160
161     GHC-Options:
162         -Wall -Werror