]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
Resurrection from slight 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.6.1
14 Cabal-Version: >= 1.2
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     schemas/rakka-page-1.0.rng
31
32 Extra-Source-Files:
33     Rakka.buildinfo.in
34     configure
35     configure.ac
36     js/Makefile
37     js/base.js
38     js/base64.js
39     js/editPage.js
40     js/hexDump.js
41     js/jquery-1.2.2.js
42     js/jquery-dom.js
43     js/localFile.js
44     js/login.js
45     js/parseuri.js
46     js/screen.js
47     js/search.js
48     js/uri.js
49     tests/RakkaUnitTest.hs
50     tests/WikiParserTest.hs
51
52 Flag build-test-suite
53     Description: Build the test suite.
54     Default:     False
55
56 Executable rakka
57     Build-Depends:
58         FileManip, HTTP, HUnit, HsHyperEstraier, HsOpenSSL, HsSVN >=
59         0.3.2, Lucu, base, bytestring, containers, dataenc, directory,
60         utf8-string, filepath, hslogger, hxt, hxt-xpath, magic, mtl,
61         network, parsec, stm, time, unix, zlib
62     Main-Is:
63         Main.hs
64     Other-Modules:
65         Rakka.Attachment
66         Rakka.Authorization
67         Rakka.Environment
68         Rakka.Page
69         Rakka.Resource
70         Rakka.Resource.CheckAuth
71         Rakka.Resource.DumpRepos
72         Rakka.Resource.Index
73         Rakka.Resource.JavaScript
74         Rakka.Resource.Object
75         Rakka.Resource.PageEntity
76         Rakka.Resource.Render
77         Rakka.Resource.Search
78         Rakka.Resource.SystemConfig
79         Rakka.Resource.TrackBack
80         Rakka.Resource.Users
81         Rakka.Storage
82         Rakka.Storage.DefaultPage
83         Rakka.Storage.Repos
84         Rakka.Storage.Types
85         Rakka.Storage.Impl
86         Rakka.SystemConfig
87         Rakka.TrackBack
88         Rakka.Utils
89         Rakka.Validation
90         Rakka.W3CDateTime
91         Rakka.Wiki
92         Rakka.Wiki.Interpreter
93         Rakka.Wiki.Interpreter.Base
94         Rakka.Wiki.Interpreter.Image
95         Rakka.Wiki.Interpreter.PageList
96         Rakka.Wiki.Interpreter.Trackback
97         Rakka.Wiki.Interpreter.Outline
98         Rakka.Wiki.Engine
99         Rakka.Wiki.Formatter
100         Rakka.Wiki.Parser
101     Extensions:
102         Arrows, ExistentialQuantification, ScopedTypeVariables, DeriveDataTypeable, FlexibleInstances
103     GHC-Options:
104         -Wall -threaded
105
106 Executable RakkaUnitTest
107     if flag(build-test-suite)
108         Buildable: True
109     else
110         Buildable: False
111     Main-Is:
112         RakkaUnitTest.hs
113     Hs-Source-Dirs:
114         ., tests
115     Other-Modules:
116         WikiParserTest
117     Extensions:
118         Arrows
119     GHC-Options:
120         -Wall -Werror