1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
-- Initial classement-multi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
-- cabal install --global
name: HsIndex
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | |
version: 0.12.0
synopsis: A program to generate indexes for LaTeX
-- description:
homepage: www.jeanjoux.fr
license: GPL-3
license-file: LICENSE
author: Jean-Luc JOULIN
maintainer: Jean-Luc JOULIN <jean-luc-joulin@orange.fr>
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules:
HsIndex.Types
, HsIndex.Sorting
, HsIndex.Show
, HsIndex.Parser
, HsIndex.Functions
, HsIndex.Files
, HsIndex.CharLists.English
, HsIndex.CharLists.French
, HsIndex.CharLists.German
, HsIndex.CharLists.Russian
, HsIndex.CharLists.Symbols
, HsIndex.CharLists.Substitutions
build-depends: base > 4.5
, parsec > 3.1
, directory
, transformers
, text
executable hsindex
hs-source-dirs: src
main-Is: hsindex.hs
other-modules:
build-depends: base > 4.5
, parsec > 3.1
, cmdargs > 0.9
, directory
, transformers
, text
|