]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
Resurrection from bitrot
[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         base-unicode-symbols == 0.2.*,
65         case-insensitive     == 0.4.*,
66         filemanip            == 0.3.*,
67         text                 == 0.11.*,
68         hxt-relaxng          == 9.1.*,
69         time-http            == 0.1.*,
70         HTTP, HUnit, HsHyperEstraier, HsOpenSSL, HsSVN >=
71         0.3.2, Lucu, base, bytestring, containers, dataenc, directory,
72         utf8-string, filepath, hslogger, hxt, hxt-xpath, magic, mtl,
73         network, parsec, stm, time, unix, zlib
74
75     Main-Is:
76         Main.hs
77
78     Other-Modules:
79         Rakka.Attachment
80         Rakka.Authorization
81         Rakka.Environment
82         Rakka.Page
83         Rakka.Resource
84         Rakka.Resource.CheckAuth
85         Rakka.Resource.DumpRepos
86         Rakka.Resource.Index
87         Rakka.Resource.JavaScript
88         Rakka.Resource.Object
89         Rakka.Resource.PageEntity
90         Rakka.Resource.Render
91         Rakka.Resource.Search
92         Rakka.Resource.SystemConfig
93         Rakka.Resource.TrackBack
94         Rakka.Resource.Users
95         Rakka.Storage
96         Rakka.Storage.DefaultPage
97         Rakka.Storage.Repos
98         Rakka.Storage.Types
99         Rakka.Storage.Impl
100         Rakka.SystemConfig
101         Rakka.TrackBack
102         Rakka.Utils
103         Rakka.Validation
104         Rakka.W3CDateTime
105         Rakka.Wiki
106         Rakka.Wiki.Interpreter
107         Rakka.Wiki.Interpreter.Base
108         Rakka.Wiki.Interpreter.Image
109         Rakka.Wiki.Interpreter.PageList
110         Rakka.Wiki.Interpreter.Trackback
111         Rakka.Wiki.Interpreter.Outline
112         Rakka.Wiki.Engine
113         Rakka.Wiki.Formatter
114         Rakka.Wiki.Parser
115
116     GHC-Options:
117         -Wall -threaded
118
119 Executable RakkaUnitTest
120     if flag(build-test-suite)
121         Buildable: True
122     else
123         Buildable: False
124     Main-Is:
125         RakkaUnitTest.hs
126     Hs-Source-Dirs:
127         ., tests
128     Other-Modules:
129         WikiParserTest
130     GHC-Options:
131         -Wall -Werror