aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/package.yaml
diff options
context:
space:
mode:
authorFrédéric Menou <frederic.menou@fretlink.com>2016-12-08 10:19:15 +0200
committerIsmaël Bouya <ismael.bouya@fretlink.com>2022-05-17 18:01:51 +0200
commita9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch)
treeadf3186fdccaeef19151026cdfbd38a530cf9ecb /specification/package.yaml
downloadedi-parser-master.tar.gz
edi-parser-master.tar.zst
edi-parser-master.zip
Release code as open sourceHEADmaster
Diffstat (limited to 'specification/package.yaml')
-rw-r--r--specification/package.yaml55
1 files changed, 55 insertions, 0 deletions
diff --git a/specification/package.yaml b/specification/package.yaml
new file mode 100644
index 0000000..361f977
--- /dev/null
+++ b/specification/package.yaml
@@ -0,0 +1,55 @@
1name: edi-parser-specification
2version: 20190607
3synopsis: Support for subset of the Edifact specification
4description: Please see README.md
5category: Text
6author: FretLink
7maintainer: example@example.com
8copyright: 2019 FretLink
9github: fretlink/edi-parser
10
11extra-source-files:
12- README.md
13
14dependencies:
15- edi-parser-core
16
17library:
18 source-dirs: src
19 ghc-options:
20 - -Wall
21 - -Werror
22 dependencies:
23 - base >=4.7 && <5
24
25executables:
26 edi-parser-specification:
27 main: Main.hs
28 source-dirs: app
29 ghc-options:
30 - -threaded
31 - -rtsopts
32 - -with-rtsopts=-N
33 dependencies:
34 - base
35 - edi-parser-specification
36 - text
37
38tests:
39 edi-parser-specification-test:
40 main: Spec.hs
41 source-dirs: test
42 ghc-options:
43 - -threaded
44 - -rtsopts
45 - -with-rtsopts=-N
46 - -Wall
47 - -Werror
48 dependencies:
49 - base
50 - edi-parser-specification
51 - parsec
52 - HUnit
53 - test-framework
54 - test-framework-hunit
55 - text