]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
Exodus to GHC 6.8.1
[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
17     defaultpages/Help/SampleImage/Small
18     defaultPages/Help/Syntax
19     defaultPages/MainPage
20     defaultPages/PageTitle
21     defaultPages/SideBar/Left
22     defaultPages/SideBar/Right
23     defaultPages/StyleSheet/Default
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.Types
59         Rakka.Storage.Impl
60         Rakka.SystemConfig
61         Rakka.Utils
62         Rakka.Wiki
63         Rakka.Wiki.Interpreter
64         Rakka.Wiki.Interpreter.Base
65         Rakka.Wiki.Interpreter.Image
66         Rakka.Wiki.Interpreter.PageList
67         Rakka.Wiki.Interpreter.Trackback
68         Rakka.Wiki.Interpreter.Outline
69         Rakka.Wiki.Engine
70         Rakka.Wiki.Formatter
71         Rakka.Wiki.Parser
72     Extensions:
73         Arrows, ExistentialQuantification, ScopedTypeVariables
74     GHC-Options:
75         -Wall -Werror -XDeriveDataTypeable
76
77 Executable RakkaUnitTest
78     if flag(build-test-suite)
79         Buildable: True
80     else
81         Buildable: False
82     Main-Is:
83         RakkaUnitTest.hs
84     Hs-Source-Dirs:
85         ., tests
86     Other-Modules:
87         WikiParserTest
88     GHC-Options:
89         -Wall -Werror