]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
preview backend now fully 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, magic, mtl, network, parsec, stm, time, unix,
46         zlib
47     Main-Is:
48         Main.hs
49     Other-Modules:
50         Rakka.Environment
51         Rakka.Page
52         Rakka.Resource
53         Rakka.Resource.Index
54         Rakka.Resource.JavaScript
55         Rakka.Resource.Object
56         Rakka.Resource.PageEntity
57         Rakka.Resource.Render
58         Rakka.Storage
59         Rakka.Storage.DefaultPage
60         Rakka.Storage.Repos
61         Rakka.Storage.Types
62         Rakka.Storage.Impl
63         Rakka.SystemConfig
64         Rakka.Utils
65         Rakka.Validation
66         Rakka.W3CDateTime
67         Rakka.Wiki
68         Rakka.Wiki.Interpreter
69         Rakka.Wiki.Interpreter.Base
70         Rakka.Wiki.Interpreter.Image
71         Rakka.Wiki.Interpreter.PageList
72         Rakka.Wiki.Interpreter.Trackback
73         Rakka.Wiki.Interpreter.Outline
74         Rakka.Wiki.Engine
75         Rakka.Wiki.Formatter
76         Rakka.Wiki.Parser
77     Extensions:
78         Arrows, ExistentialQuantification, ScopedTypeVariables
79     GHC-Options:
80         -Wall -XDeriveDataTypeable
81
82 Executable RakkaUnitTest
83     if flag(build-test-suite)
84         Buildable: True
85     else
86         Buildable: False
87     Main-Is:
88         RakkaUnitTest.hs
89     Hs-Source-Dirs:
90         ., tests
91     Other-Modules:
92         WikiParserTest
93     Extensions:
94         Arrows
95     GHC-Options:
96         -Wall -Werror