]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
code relocation
[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.Storage
57         Rakka.Storage.DefaultPage
58         Rakka.Storage.Repos
59         Rakka.Storage.Types
60         Rakka.Storage.Impl
61         Rakka.SystemConfig
62         Rakka.Utils
63         Rakka.Validation
64         Rakka.W3CDateTime
65         Rakka.Wiki
66         Rakka.Wiki.Interpreter
67         Rakka.Wiki.Interpreter.Base
68         Rakka.Wiki.Interpreter.Image
69         Rakka.Wiki.Interpreter.PageList
70         Rakka.Wiki.Interpreter.Trackback
71         Rakka.Wiki.Interpreter.Outline
72         Rakka.Wiki.Engine
73         Rakka.Wiki.Formatter
74         Rakka.Wiki.Parser
75     Extensions:
76         Arrows, ExistentialQuantification, ScopedTypeVariables
77     GHC-Options:
78         -Wall -XDeriveDataTypeable
79
80 Executable RakkaUnitTest
81     if flag(build-test-suite)
82         Buildable: True
83     else
84         Buildable: False
85     Main-Is:
86         RakkaUnitTest.hs
87     Hs-Source-Dirs:
88         ., tests
89     Other-Modules:
90         WikiParserTest
91     Extensions:
92         Arrows
93     GHC-Options:
94         -Wall -Werror