summaryrefslogtreecommitdiff
path: root/upstream/wavefront.cabal.wavefront
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-06-10 23:03:04 -0400
committerJoe Crayne <joe@jerkface.net>2019-06-10 23:03:04 -0400
commit38b7bcf654e5e804a13518b060ebdba59bf232bb (patch)
tree2fa3c4ccf3496750f0ce388a9ea0998fdd93bf69 /upstream/wavefront.cabal.wavefront
Initial commit.
Diffstat (limited to 'upstream/wavefront.cabal.wavefront')
-rw-r--r--upstream/wavefront.cabal.wavefront54
1 files changed, 54 insertions, 0 deletions
diff --git a/upstream/wavefront.cabal.wavefront b/upstream/wavefront.cabal.wavefront
new file mode 100644
index 0000000..95f5118
--- /dev/null
+++ b/upstream/wavefront.cabal.wavefront
@@ -0,0 +1,54 @@
1name: wavefront
2version: 0.7.1.3
3synopsis: Wavefront OBJ loader
4description: A Wavefront OBJ loader. Currently supports polygonal information. More could
5 be added if needed (like curves and surface) if people contribute. Feel free
6 to help!
7homepage: https://github.com/phaazon/wavefront
8bug-reports: https://github.com/phaazon/wavefront/issues
9license: BSD3
10license-file: LICENSE
11author: Dimitri Sabadie <dimitri.sabadie@gmail.com>
12maintainer: Dimitri Sabadie <dimitri.sabadie@gmail.com>
13copyright: Dimitri Sabadie
14
15category: Codec
16build-type: Simple
17extra-source-files: CHANGELOG.md
18cabal-version: >= 1.10
19
20source-repository head
21 type: git
22 location: git://github.com/phaazon/wavefront.git
23
24library
25 ghc-options: -W -Wall
26
27 exposed-modules: Codec.Wavefront
28 , Codec.Wavefront.Element
29 , Codec.Wavefront.Face
30 , Codec.Wavefront.IO
31 , Codec.Wavefront.Location
32 , Codec.Wavefront.Line
33 , Codec.Wavefront.Normal
34 , Codec.Wavefront.Object
35 , Codec.Wavefront.Point
36 , Codec.Wavefront.TexCoord
37
38 other-modules: Codec.Wavefront.Token
39 , Codec.Wavefront.Lexer
40
41 default-extensions: OverloadedStrings
42
43 build-depends: base >= 4.8 && < 4.13
44 , attoparsec >= 0.13 && < 0.14
45 , dlist >= 0.7 && < 0.9
46 , filepath >= 1.4 && < 1.5
47 , mtl >= 2.2 && < 2.3
48 , text >= 1.2 && < 1.3
49 , transformers >= 0.4 && < 0.6
50 , vector >= 0.11 && < 0.13
51
52 hs-source-dirs: src
53
54 default-language: Haskell2010