]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
merge branch origin/master
[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 Bug-Reports:   http://static.cielonegro.org/ditz/Rakka/
13 Category:      Web
14 Tested-With:   GHC == 6.12.1
15 Cabal-Version: >= 1.6
16 Build-Type:    Custom
17
18 Data-Files:
19     defaultPages/Feed.xml
20     defaultPages/Help/SampleImage/Large.xml
21     defaultPages/Help/SampleImage/Small.xml
22     defaultPages/Help/Syntax.xml
23     defaultPages/MainPage.xml
24     defaultPages/PageTitle.xml
25     defaultPages/SideBar/Left.xml
26     defaultPages/SideBar/Right.xml
27     defaultPages/StyleSheet/CieloNegro/Logo.xml
28     defaultPages/StyleSheet/CieloNegro/Moon.xml
29     defaultPages/StyleSheet/CieloNegro.xml
30     defaultPages/StyleSheet/Default.xml
31     rc.d/NetBSD/rakka.in
32     schemas/rakka-page-1.0.rng
33
34 Extra-Source-Files:
35     Rakka.buildinfo.in
36     configure
37     configure.ac
38     js/Makefile
39     js/base.js
40     js/base64.js
41     js/editPage.js
42     js/hashedParam.js
43     js/hexDump.js
44     js/jquery-1.2.6.js
45     js/jquery-dom.js
46     js/localFile.js
47     js/login.js
48     js/parseuri.js
49     js/redirection.js
50     js/screen.js
51     js/search.js
52     js/systemConfig.js
53     js/uri.js
54     tests/RakkaUnitTest.hs
55     tests/WikiParserTest.hs
56
57 Source-Repository head
58     Type: git
59     Location: git://git.cielonegro.org/Rakka.git
60
61 Flag build-test-suite
62     Description: Build the test suite.
63     Default:     False
64
65 Executable rakka
66     Build-Depends:
67         HsHyperEstraier      == 0.4.*,
68         HsOpenSSL            == 0.10.*,
69         HsSVN                == 0.4.*,
70         Lucu                 == 0.7.*,
71         base                 == 4.*,
72         base-unicode-symbols == 0.2.*,
73         bytestring           == 0.9.*,
74         case-insensitive     == 0.4.*,
75         containers           == 0.4.*,
76         dataenc              == 0.14.*,
77         directory            == 1.1.*,
78         filemanip            == 0.3.*,
79         filepath             == 1.2.*,
80         hslogger             == 1.1.*,
81         hxt                  == 9.2.*,
82         hxt-relaxng          == 9.1.*,
83         hxt-xpath            == 9.1.*,
84         magic                == 1.0.*,
85         mtl                  == 2.0.*,
86         network              == 2.3.*,
87         parsec               == 3.1.*,
88         stm                  == 2.2.*,
89         text                 == 0.11.*,
90         time                 == 1.2.*,
91         time-http            == 0.1.*,
92         time-w3c             == 0.1.*,
93         unix                 == 2.4.*,
94         utf8-string          == 0.3.*,
95         zlib                 == 0.5.*
96
97     Main-Is:
98         Main.hs
99
100     Other-Modules:
101         Rakka.Attachment
102         Rakka.Authorization
103         Rakka.Environment
104         Rakka.Page
105         Rakka.Resource
106         Rakka.Resource.CheckAuth
107         Rakka.Resource.DumpRepos
108         Rakka.Resource.Index
109         Rakka.Resource.JavaScript
110         Rakka.Resource.Object
111         Rakka.Resource.PageEntity
112         Rakka.Resource.Render
113         Rakka.Resource.Search
114         Rakka.Resource.SystemConfig
115         Rakka.Resource.Users
116         Rakka.Storage
117         Rakka.Storage.DefaultPage
118         Rakka.Storage.Repos
119         Rakka.Storage.Types
120         Rakka.Storage.Impl
121         Rakka.SystemConfig
122         Rakka.Utils
123         Rakka.Validation
124         Rakka.Wiki
125         Rakka.Wiki.Interpreter
126         Rakka.Wiki.Interpreter.Base
127         Rakka.Wiki.Interpreter.Image
128         Rakka.Wiki.Interpreter.PageList
129         Rakka.Wiki.Interpreter.Outline
130         Rakka.Wiki.Engine
131         Rakka.Wiki.Formatter
132         Rakka.Wiki.Parser
133
134     GHC-Options:
135         -Wall -threaded
136
137 Executable RakkaUnitTest
138     if flag(build-test-suite)
139         Buildable: True
140         Build-Depends: HUnit
141     else
142         Buildable: False
143
144     Main-Is:
145         RakkaUnitTest.hs
146
147     Hs-Source-Dirs:
148         ., tests
149
150     Other-Modules:
151         WikiParserTest
152
153     GHC-Options:
154         -Wall -Werror