]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
.boring => .gitignore
[Rakka.git] / Rakka.cabal
1 Name:          Rakka
2 Synopsis:      RESTful Wiki engine with Subversion backend
3 Description:
4     Rakka is a RESTful wiki engine with Subversion backend. Its syntax
5     is similar to MediaWiki.
6 Version:       0.1
7 License:       PublicDomain
8 Author:        PHO <pho at cielonegro dot org>
9 Maintainer:    PHO <pho at cielonegro dot org>
10 Stability:     experimental
11 Homepage:      http://rakka.cielonegro.org/
12 Category:      Web
13 Tested-With:   GHC == 6.6.1
14 Cabal-Version: >= 1.2
15 Build-Type:    Custom
16 Data-Files:
17     defaultPages/Feed.xml
18     defaultPages/Help/SampleImage/Large.xml
19     defaultPages/Help/SampleImage/Small.xml
20     defaultPages/Help/Syntax.xml
21     defaultPages/MainPage.xml
22     defaultPages/PageTitle.xml
23     defaultPages/SideBar/Left.xml
24     defaultPages/SideBar/Right.xml
25     defaultPages/StyleSheet/CieloNegro/Logo.xml
26     defaultPages/StyleSheet/CieloNegro/Moon.xml
27     defaultPages/StyleSheet/CieloNegro.xml
28     defaultPages/StyleSheet/Default.xml
29     schemas/rakka-page-1.0.rng
30
31 Source-Repository head
32     Type: git
33     Location: git://git.cielonegro.org/Rakka
34
35 Extra-Source-Files:
36     Rakka.buildinfo.in
37     configure
38     configure.ac
39     js/Makefile
40     js/base.js
41     js/base64.js
42     js/editPage.js
43     js/hexDump.js
44     js/jquery-1.2.2.js
45     js/jquery-dom.js
46     js/localFile.js
47     js/login.js
48     js/parseuri.js
49     js/screen.js
50     js/search.js
51     js/uri.js
52     tests/RakkaUnitTest.hs
53     tests/WikiParserTest.hs
54
55 Flag build-test-suite
56     Description: Build the test suite.
57     Default:     False
58
59 Executable rakka
60     Build-Depends:
61         FileManip, HTTP, HUnit, HsHyperEstraier, HsOpenSSL, HsSVN >=
62         0.3.2, Lucu, base, bytestring, containers, dataenc, directory,
63         utf8-string, filepath, hslogger, hxt, hxt-xpath, magic, mtl,
64         network, parsec, stm, time, unix, zlib
65     Main-Is:
66         Main.hs
67     Other-Modules:
68         Rakka.Attachment
69         Rakka.Authorization
70         Rakka.Environment
71         Rakka.Page
72         Rakka.Resource
73         Rakka.Resource.CheckAuth
74         Rakka.Resource.DumpRepos
75         Rakka.Resource.Index
76         Rakka.Resource.JavaScript
77         Rakka.Resource.Object
78         Rakka.Resource.PageEntity
79         Rakka.Resource.Render
80         Rakka.Resource.Search
81         Rakka.Resource.SystemConfig
82         Rakka.Resource.TrackBack
83         Rakka.Resource.Users
84         Rakka.Storage
85         Rakka.Storage.DefaultPage
86         Rakka.Storage.Repos
87         Rakka.Storage.Types
88         Rakka.Storage.Impl
89         Rakka.SystemConfig
90         Rakka.TrackBack
91         Rakka.Utils
92         Rakka.Validation
93         Rakka.W3CDateTime
94         Rakka.Wiki
95         Rakka.Wiki.Interpreter
96         Rakka.Wiki.Interpreter.Base
97         Rakka.Wiki.Interpreter.Image
98         Rakka.Wiki.Interpreter.PageList
99         Rakka.Wiki.Interpreter.Trackback
100         Rakka.Wiki.Interpreter.Outline
101         Rakka.Wiki.Engine
102         Rakka.Wiki.Formatter
103         Rakka.Wiki.Parser
104     Extensions:
105         Arrows, ExistentialQuantification, ScopedTypeVariables,
106         DeriveDataTypeable, FlexibleInstances
107     GHC-Options:
108         -Wall -threaded
109
110 Executable RakkaUnitTest
111     if flag(build-test-suite)
112         Buildable: True
113     else
114         Buildable: False
115     Main-Is:
116         RakkaUnitTest.hs
117     Hs-Source-Dirs:
118         ., tests
119     Other-Modules:
120         WikiParserTest
121     Extensions:
122         Arrows
123     GHC-Options:
124         -Wall -Werror