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