]> gitweb @ CieloNegro.org - Rakka.git/blob - Rakka.cabal
rc file for NetBSD
[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.12.1
14 Cabal-Version: >= 1.6
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     rc.d/NetBSD/rakka.in
30     schemas/rakka-page-1.0.rng
31 Extra-Source-Files:
32     Rakka.buildinfo.in
33     configure
34     configure.ac
35     js/Makefile
36     js/base.js
37     js/base64.js
38     js/editPage.js
39     js/hashedParam.js
40     js/hexDump.js
41     js/jquery-1.2.6.js
42     js/jquery-dom.js
43     js/localFile.js
44     js/login.js
45     js/parseuri.js
46     js/redirection.js
47     js/screen.js
48     js/search.js
49     js/systemConfig.js
50     js/uri.js
51     tests/RakkaUnitTest.hs
52     tests/WikiParserTest.hs
53
54 Source-Repository head
55     Type: git
56     Location: git://git.cielonegro.org/Rakka.git
57
58 Flag build-test-suite
59     Description: Build the test suite.
60     Default:     False
61
62 Executable rakka
63     Build-Depends:
64         FileManip, HTTP, HUnit, HsHyperEstraier, HsOpenSSL, HsSVN >=
65         0.3.2, Lucu, base, bytestring, containers, dataenc, directory,
66         utf8-string, filepath, hslogger, hxt, hxt-xpath, magic, mtl,
67         network, parsec, stm, time, unix, zlib
68     Main-Is:
69         Main.hs
70     Other-Modules:
71         Rakka.Attachment
72         Rakka.Authorization
73         Rakka.Environment
74         Rakka.Page
75         Rakka.Resource
76         Rakka.Resource.CheckAuth
77         Rakka.Resource.DumpRepos
78         Rakka.Resource.Index
79         Rakka.Resource.JavaScript
80         Rakka.Resource.Object
81         Rakka.Resource.PageEntity
82         Rakka.Resource.Render
83         Rakka.Resource.Search
84         Rakka.Resource.SystemConfig
85         Rakka.Resource.TrackBack
86         Rakka.Resource.Users
87         Rakka.Storage
88         Rakka.Storage.DefaultPage
89         Rakka.Storage.Repos
90         Rakka.Storage.Types
91         Rakka.Storage.Impl
92         Rakka.SystemConfig
93         Rakka.TrackBack
94         Rakka.Utils
95         Rakka.Validation
96         Rakka.W3CDateTime
97         Rakka.Wiki
98         Rakka.Wiki.Interpreter
99         Rakka.Wiki.Interpreter.Base
100         Rakka.Wiki.Interpreter.Image
101         Rakka.Wiki.Interpreter.PageList
102         Rakka.Wiki.Interpreter.Trackback
103         Rakka.Wiki.Interpreter.Outline
104         Rakka.Wiki.Engine
105         Rakka.Wiki.Formatter
106         Rakka.Wiki.Parser
107     Extensions:
108         Arrows, ExistentialQuantification, ScopedTypeVariables,
109         DeriveDataTypeable, FlexibleInstances
110     GHC-Options:
111         -Wall -threaded
112
113 Executable RakkaUnitTest
114     if flag(build-test-suite)
115         Buildable: True
116     else
117         Buildable: False
118     Main-Is:
119         RakkaUnitTest.hs
120     Hs-Source-Dirs:
121         ., tests
122     Other-Modules:
123         WikiParserTest
124     Extensions:
125         Arrows
126     GHC-Options:
127         -Wall -Werror