]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
previewer backend now partly works
[Rakka.git] / Rakka.cabal
1 Name:          Rakka
2 Synopsis:      Wiki engine with Subversion backend
3 Description:
4     FIXME: write this
5 Version:       0.1
6 License:       PublicDomain
7 Author:        PHO <phonohawk at ps dot sakura dot ne dot jp>
8 Maintainer:    PHO <phonohawk at ps dot sakura dot ne dot jp>
9 Stability:     experimental
10 Homepage:      http://ccm.sherry.jp/Rakka/
11 Category:      Web
12 Tested-With:   GHC == 6.6.1
13 Cabal-Version: >= 1.2
14
15 Data-Files:
16     defaultpages/Help/SampleImage/Large.xml
17     defaultpages/Help/SampleImage/Small.xml
18     defaultPages/Help/Syntax.xml
19     defaultPages/MainPage.xml
20     defaultPages/PageTitle.xml
21     defaultPages/SideBar/Left.xml
22     defaultPages/SideBar/Right.xml
23     defaultPages/StyleSheet/Default.xml
24     schemas/rakka-page-1.0.rng
25
26 Extra-Source-Files:
27     Rakka.buildinfo.in
28     configure
29     configure.ac
30     js/Makefile
31     js/base.js
32     js/editPage.js
33     js/jquery-1.2.1.js
34     js/jquery-dom.js
35     js/screen.js
36
37 Flag build-test-suite
38     Description: Build the test suite.
39     Default:     False
40
41 Executable rakka
42     Build-Depends:
43         Crypto, FileManip, HUnit, HsHyperEstraier, HsSVN, Lucu, base,
44         bytestring, containers, directory, utf8-string, filepath,
45         hslogger, hxt, mtl, network, parsec, stm, time, unix, zlib
46     Main-Is:
47         Main.hs
48     Other-Modules:
49         Rakka.Environment
50         Rakka.Page
51         Rakka.Resource
52         Rakka.Resource.Index
53         Rakka.Resource.JavaScript
54         Rakka.Resource.Object
55         Rakka.Resource.PageEntity
56         Rakka.Resource.Render
57         Rakka.Storage
58         Rakka.Storage.DefaultPage
59         Rakka.Storage.Repos
60         Rakka.Storage.Types
61         Rakka.Storage.Impl
62         Rakka.SystemConfig
63         Rakka.Utils
64         Rakka.Validation
65         Rakka.W3CDateTime
66         Rakka.Wiki
67         Rakka.Wiki.Interpreter
68         Rakka.Wiki.Interpreter.Base
69         Rakka.Wiki.Interpreter.Image
70         Rakka.Wiki.Interpreter.PageList
71         Rakka.Wiki.Interpreter.Trackback
72         Rakka.Wiki.Interpreter.Outline
73         Rakka.Wiki.Engine
74         Rakka.Wiki.Formatter
75         Rakka.Wiki.Parser
76     Extensions:
77         Arrows, ExistentialQuantification, ScopedTypeVariables
78     GHC-Options:
79         -Wall -XDeriveDataTypeable
80
81 Executable RakkaUnitTest
82     if flag(build-test-suite)
83         Buildable: True
84     else
85         Buildable: False
86     Main-Is:
87         RakkaUnitTest.hs
88     Hs-Source-Dirs:
89         ., tests
90     Other-Modules:
91         WikiParserTest
92     Extensions:
93         Arrows
94     GHC-Options:
95         -Wall -Werror