-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.yaml
53 lines (47 loc) · 1.18 KB
/
package.yaml
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
name: libxlsxwriter
version: 0.0.2
synopsis: Excel file generation (libxslxwriter)
maintainer: Blake Rain <[email protected]>
license: BSD3
build-type: Simple
dependencies:
- base
- data-default
- time
ghc-options: -Wall -O2
library:
exposed-modules:
- Data.Excel
source-dirs:
- src
include-dirs:
- thirdparty/include
c-sources:
- thirdparty/src/app.c
- thirdparty/src/chart.c
- thirdparty/src/content_types.c
- thirdparty/src/core.c
- thirdparty/src/custom.c
- thirdparty/src/drawing.c
- thirdparty/src/format.c
- thirdparty/src/hash_table.c
- thirdparty/src/packager.c
- thirdparty/src/relationships.c
- thirdparty/src/shared_strings.c
- thirdparty/src/styles.c
- thirdparty/src/theme.c
- thirdparty/src/utility.c
- thirdparty/src/workbook.c
- thirdparty/src/worksheet.c
- thirdparty/src/xmlwriter.c
- thirdparty/third_party/minizip/ioapi.c
- thirdparty/third_party/minizip/zip.c
- thirdparty/third_party/tmpfileplus/tmpfileplus.c
extra-libraries:
- z
executables:
excel-test1:
main: excel-test1.hs
source-dirs: test
dependencies:
- libxlsxwriter