-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.yaml
executable file
·95 lines (85 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: perspec
version: 0.2.0.0
github: feramhq/Perspec
license-file: license
author: Adrian Sieber
maintainer: [email protected]
copyright: Adrian Sieber
extra-source-files:
- readme.md
- changelog.md
- cbits/tinyfiledialogs.h
- cbits/simplecv.h
- cbits/perspectivetransform.h
synopsis: Scan documents and books with as little hardware as possible.
category: Scan
description: |
Please see the readme on GitHub at <https://github.com/feramhq/Perspec#readme>
language: GHC2021
dependencies:
- aeson
- base >= 4.7 && < 5
- bmp
- brillo
- brillo-juicy
- brillo-rendering
- bytestring
- Color
- directory
- docopt
- file-embed
- filepath
- hip
- hmatrix
- JuicyPixels
- lens
- linear
- massiv
- massiv-io
- natural-sort
- optparse-applicative
- process
- protolude
- text
- yaml
default-extensions:
- DuplicateRecordFields
- LambdaCase
- NoImplicitPrelude
- OverloadedRecordDot
- OverloadedStrings
- RecordWildCards
- TemplateHaskell
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints
- -fno-warn-orphans
library:
source-dirs: source
build-tools: c2hs
c-sources:
- cbits/tinyfiledialogs.c
- cbits/simplecv.c
- cbits/perspectivetransform.c
include-dirs: cbits/
cc-options: -DHSFORCECONSOLE=0
executables:
perspec:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- perspec
tests:
perspec-test:
main: Spec.hs
source-dirs: test
dependencies:
- hspec
- perspec