-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpotrace.cabal
40 lines (38 loc) · 1.24 KB
/
potrace.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
name: potrace
version: 0.1.0.0
synopsis: Trace bitmap images to paths using potrace
description:
Trace bitmap images to paths using the potrace library. Helpers for
generating bitmap images from functions or JuicyPixel images.
.
See <https://github.com/diagrams/potrace-diagrams/ potrace-diagrams>
for an implimentation for the diagrams library.
license: GPL-2
license-file: LICENSE
author: Christopher Chalmers
maintainer: c.chalmers@me.com
homepage: http://github.com/cchalmers/potrace
bug-reports: http://github.com/cchalmers/potrace/issues
copyright: (c) 2015. Christopher Chalmers <c.chalmers@me.com>
category: Graphics
build-type: Simple
extra-source-files: README.md, diagrams/*.svg
extra-doc-files: diagrams/*.svg
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/cchalmers/potrace.git
library
exposed-modules:
Graphics.Potrace
Graphics.Potrace.Base
build-depends:
base >=4.6 && <5,
bindings-potrace >=0.1 && <0.2,
vector,
JuicyPixels,
bytestring,
containers,
data-default
hs-source-dirs: src
default-language: Haskell2010