summaryrefslogtreecommitdiff
path: root/indexing/hsindex/HsIndex.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'indexing/hsindex/HsIndex.cabal')
-rw-r--r--indexing/hsindex/HsIndex.cabal58
1 files changed, 58 insertions, 0 deletions
diff --git a/indexing/hsindex/HsIndex.cabal b/indexing/hsindex/HsIndex.cabal
new file mode 100644
index 0000000000..afe8e5c183
--- /dev/null
+++ b/indexing/hsindex/HsIndex.cabal
@@ -0,0 +1,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
+
+
+
+