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