]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
implemented login/out interface
[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/base64.js
33     js/editPage.js
34     js/jquery-1.2.1.js
35     js/jquery-dom.js
36     js/localFile.js
37     js/login.js
38     js/screen.js
39
40 Flag build-test-suite
41     Description: Build the test suite.
42     Default:     False
43
44 Executable rakka
45     Build-Depends:
46         Crypto, FileManip, HUnit, HsHyperEstraier, HsSVN, Lucu, base,
47         bytestring, containers, directory, utf8-string, filepath,
48         hslogger, hxt, magic, mtl, network, parsec, stm, time, unix,
49         zlib
50     Main-Is:
51         Main.hs
52     Other-Modules:
53         Rakka.Authorization
54         Rakka.Environment
55         Rakka.Page
56         Rakka.Resource
57         Rakka.Resource.CheckAuth
58         Rakka.Resource.Index
59         Rakka.Resource.JavaScript
60         Rakka.Resource.Object
61         Rakka.Resource.PageEntity
62         Rakka.Resource.Render
63         Rakka.Storage
64         Rakka.Storage.DefaultPage
65         Rakka.Storage.Repos
66         Rakka.Storage.Types
67         Rakka.Storage.Impl
68         Rakka.SystemConfig
69         Rakka.Utils
70         Rakka.Validation
71         Rakka.W3CDateTime
72         Rakka.Wiki
73         Rakka.Wiki.Interpreter
74         Rakka.Wiki.Interpreter.Base
75         Rakka.Wiki.Interpreter.Image
76         Rakka.Wiki.Interpreter.PageList
77         Rakka.Wiki.Interpreter.Trackback
78         Rakka.Wiki.Interpreter.Outline
79         Rakka.Wiki.Engine
80         Rakka.Wiki.Formatter
81         Rakka.Wiki.Parser
82     Extensions:
83         Arrows, ExistentialQuantification, ScopedTypeVariables
84     GHC-Options:
85         -Wall -XDeriveDataTypeable
86
87 Executable RakkaUnitTest
88     if flag(build-test-suite)
89         Buildable: True
90     else
91         Buildable: False
92     Main-Is:
93         RakkaUnitTest.hs
94     Hs-Source-Dirs:
95         ., tests
96     Other-Modules:
97         WikiParserTest
98     Extensions:
99         Arrows
100     GHC-Options:
101         -Wall -Werror