]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
cabal fix
[Rakka.git] / Rakka.cabal
1 Name:          Rakka
2 Synopsis:      Wiki engine with Subversion backend
3 Description:
4     Rakka is a wiki engine with Subversion backend. Its syntax is
5     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/jquery-1.2.2.js
41     js/jquery-dom.js
42     js/localFile.js
43     js/login.js
44     js/screen.js
45     js/search.js
46     js/uri.js
47     tests/RakkaUnitTest.hs
48     tests/WikiParserTest.hs
49
50 Flag build-test-suite
51     Description: Build the test suite.
52     Default:     False
53
54 Executable rakka
55     Build-Depends:
56         FileManip, HTTP, HUnit, HsHyperEstraier, HsOpenSSL, HsSVN >=
57         0.3.2, Lucu, base, bytestring, containers, dataenc, directory,
58         utf8-string, filepath, hslogger, hxt, magic, mtl, network,
59         parsec, stm, time, unix, zlib
60     Main-Is:
61         Main.hs
62     Other-Modules:
63         Rakka.Attachment
64         Rakka.Authorization
65         Rakka.Environment
66         Rakka.Page
67         Rakka.Resource
68         Rakka.Resource.CheckAuth
69         Rakka.Resource.DumpRepos
70         Rakka.Resource.Index
71         Rakka.Resource.JavaScript
72         Rakka.Resource.Object
73         Rakka.Resource.PageEntity
74         Rakka.Resource.Render
75         Rakka.Resource.Search
76         Rakka.Resource.SystemConfig
77         Rakka.Resource.TrackBack
78         Rakka.Storage
79         Rakka.Storage.DefaultPage
80         Rakka.Storage.Repos
81         Rakka.Storage.Types
82         Rakka.Storage.Impl
83         Rakka.SystemConfig
84         Rakka.TrackBack
85         Rakka.Utils
86         Rakka.Validation
87         Rakka.W3CDateTime
88         Rakka.Wiki
89         Rakka.Wiki.Interpreter
90         Rakka.Wiki.Interpreter.Base
91         Rakka.Wiki.Interpreter.Image
92         Rakka.Wiki.Interpreter.PageList
93         Rakka.Wiki.Interpreter.Trackback
94         Rakka.Wiki.Interpreter.Outline
95         Rakka.Wiki.Engine
96         Rakka.Wiki.Formatter
97         Rakka.Wiki.Parser
98     Extensions:
99         Arrows, ExistentialQuantification, ScopedTypeVariables, DeriveDataTypeable, FlexibleInstances
100     GHC-Options:
101         -Wall -threaded
102
103 Executable RakkaUnitTest
104     if flag(build-test-suite)
105         Buildable: True
106     else
107         Buildable: False
108     Main-Is:
109         RakkaUnitTest.hs
110     Hs-Source-Dirs:
111         ., tests
112     Other-Modules:
113         WikiParserTest
114     Extensions:
115         Arrows
116     GHC-Options:
117         -Wall -Werror