-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathperceptual-hash.cabal
231 lines (186 loc) · 5.55 KB
/
perceptual-hash.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
cabal-version: 2.0
name: perceptual-hash
version: 0.1.4.7
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2019-2021 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
synopsis: Find duplicate images
description: Find similar images using perceptual hashes
category: Application, CommandLine, Images
build-type: Simple
data-files:
demo-data/cat.png
demo-data/frog.jpeg
demo-data/frog.png
demo-data/meme.png
demo-data/meme-watermark.jpg
demo-data/liz-taylor.webp
demo-data/liz-taylor.png
demo-data/fashion.avif
demo-data/fashion.png
extra-source-files: include/hs_phash.h
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/vmchale/phash
flag with-phash
description: Use FFI bindings to pHash
default: False
manual: True
flag disable-webp
description: Don't depend on webp FFI bindings
default: False
flag disable-avif
description: Don't depend on avif FFI bindings
default: False
flag llvm
description: Use LLVM backend to GHC rather than NCG
default: False
manual: True
library
exposed-modules: PerceptualHash
hs-source-dirs: src
other-modules: Median
default-language: Haskell2010
other-extensions: FlexibleContexts TypeFamilies
ghc-options: -Wall -O2
build-tool-depends: cpphs:cpphs
build-depends:
base >=4.10 && <5,
hip,
vector-algorithms,
vector,
primitive,
bytestring,
JuicyPixels
if !flag(disable-webp)
build-depends: webp >=0.1.0.3
cpp-options: -DWEBP
if !flag(disable-avif)
build-depends: avif
cpp-options: -DAVIF
if flag(llvm)
ghc-options: -fllvm
if flag(with-phash)
extra-libraries: pHash
if flag(with-phash)
exposed-modules: ForeignHash
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
if impl(ghc >=9.0)
ghc-options: -Winvalid-haddock
foreign-library hsphash
type: native-shared
hs-source-dirs: foreign-src
other-modules: Export
default-language: Haskell2010
include-dirs: include
install-includes: hs_phash.h
ghc-options: -Wall
build-depends:
base,
perceptual-hash
lib-version-info: 1:0:0
if os(windows)
options: standalone
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
if impl(ghc >=9.0)
ghc-options: -Winvalid-haddock
executable phash
main-is: Main.hs
hs-source-dirs: app
other-modules:
Paths_perceptual_hash
Parser
Parallel
autogen-modules: Paths_perceptual_hash
default-language: Haskell2010
other-extensions: ScopedTypeVariables
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -qg"
if !flag(disable-webp)
cpp-options: -DWEBP
if !flag(disable-avif)
cpp-options: -DAVIF
build-tool-depends: cpphs:cpphs
build-depends:
base >=4.9 && <5,
perceptual-hash,
containers,
filepath,
optparse-applicative >=0.13.0.0,
par-traverse >=0.2.1.0,
stm >=2.3
if flag(llvm)
ghc-options: -fllvm
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
test-suite perceptual-hash-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -K1K"
build-tool-depends: cpphs:cpphs
if !flag(disable-webp)
cpp-options: -DWEBP
if !flag(disable-avif)
cpp-options: -DAVIF
build-depends:
base,
perceptual-hash,
hspec
if impl(ghc >=8.0)
ghc-options:
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages
benchmark phash-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
build-tool-depends: cpphs:cpphs
hs-source-dirs: bench
default-language: Haskell2010
ghc-options:
-threaded -rtsopts "-with-rtsopts=-N -qg" -Wall
-Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints
build-depends:
base,
perceptual-hash,
criterion,
filepath,
deepseq
if flag(llvm)
ghc-options: -fllvm
if flag(with-phash)
cpp-options: -DFOREIGN_PHASH
if impl(ghc >=8.4)
ghc-options: -Wmissing-export-lists
if impl(ghc >=8.10)
ghc-options: -Wunused-packages