-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbibproc.cabal
58 lines (48 loc) · 1.04 KB
/
bibproc.cabal
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
Name: bibproc
Version: 0.2
Synopsis: Process bibtex records
Description: Process bibtex records
License: BSD3
Author: Finlay Thompson
Maintainer: [email protected]
Copyright: Copyright (c)2010, Finlay Thompson
Stability: Experimental
Category: Web
Build-type: Simple
Cabal-version: >=1.2
Executable bib2html
main-is: bib2html.hs
Build-depends:
base >= 4 && < 5,
citeproc-hs > 0.3,
pandoc,
directory,
filepath,
parsec,
HUnit
ghc-options: -O2 -Wall
Executable bib2sort
main-is: bib2sort.hs
Build-depends:
base >= 4 && < 5,
citeproc-hs > 0.3,
pandoc,
directory,
filepath,
split,
parsec,
HUnit
ghc-options: -O2 -Wall
Executable bib2html_test
main-is: Bibproc/Test.hs
Build-depends:
base >= 4 && < 5,
citeproc-hs > 0.3,
pandoc,
directory,
filepath,
parsec,
HUnit,
heredoc >= 0.2,
template-haskell
ghc-options: -O2 -Wall