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