forked from vincenthz/language-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage-java.cabal
More file actions
58 lines (50 loc) · 1.86 KB
/
language-java.cabal
File metadata and controls
58 lines (50 loc) · 1.86 KB
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
Name: language-java
Version: 0.2.7
License: BSD3
License-File: LICENSE
Author: Niklas Broberg
Maintainer: Vincent Hanquez <vincent@snarc.org>
Category: Language
Synopsis: Manipulating Java source: abstract syntax, lexer, parser, and pretty-printer
Description: Java source manipulation.
Homepage: https://github.com/vincenthz/language-java
Stability: Experimental
Build-Type: Simple
Cabal-Version: >= 1.8
Extra-Source-Files:
tests/java/good/*.java
tests/java/bad/*.java
Language/Java/Lexer.x
source-repository head
type: git
location: git://github.com/vincenthz/language-java
Library
Build-Tools: alex >= 3.1.3
Build-Depends: base >= 4 && < 5
, array >= 0.1
, pretty >= 1.0
, cpphs >= 1.3
, parsec >= 3.0
if impl(ghc < 7.6)
Build-Depends: syb
ghc-options: -Wall -fwarn-tabs -fno-warn-missing-signatures
Exposed-modules: Language.Java.Lexer,
Language.Java.Syntax,
Language.Java.Parser,
Language.Java.Pretty
Other-modules:
Test-Suite test-java-parse
type: exitcode-stdio-1.0
hs-source-dirs: tests
Main-is: Tests.hs
Build-Depends: base >= 3 && < 5
, mtl
, QuickCheck >= 2
, HUnit
, test-framework
, test-framework-quickcheck2
, test-framework-hunit
, language-java
, filepath
, directory
ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures