-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpboy.cabal
72 lines (67 loc) · 1.48 KB
/
pboy.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
cabal-version: 3.0
name: pboy
version: 1.7
synopsis: a small .pdf management utility
description: Please see the README on Github at <https://github.com/2mol/pboy#readme>
homepage: https://github.com/2mol/pboy#readme
bug-reports: https://github.com/2mol/pboy/issues
author: Juri Chomé
maintainer: juri.chome@gmail.com
copyright: 2020 Juri Chomé
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
Changelog.txt
LICENSE
source-repository head
type: git
location: https://github.com/2mol/pboy
library
exposed-modules:
UI
other-modules:
Config
, Lib
, PDFInfo
, Paths_pboy
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, brick
, config-ini
, filepath
, directory
, either
, microlens
, microlens-th
, mtl
, process
, process-extras
, text
, time
, time-locale-compat
, titlecase
, vector
, vty
default-language: Haskell2010
executable pboy
main-is: Main.hs
other-modules:
Paths_pboy
hs-source-dirs:
app
ghc-options:
-threaded -O2 -rtsopts -with-rtsopts=-N
-Wall -Wcompat -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints
-- if os(linux)
-- ghc-options: -static
-- cc-options: -static
-- ld-options: -static -pthread
build-depends:
base >=4.7 && <5
, pboy
default-language: Haskell2010