|
1 | | -Name: VirMat |
2 | | -Version: 0.4.1 |
3 | | -License: GPL-3 |
4 | | -License-file: LICENSE |
5 | | -Author: Edgar Gomes de Araujo |
6 | | -Maintainer: Edgar Gomes de Araujo <talktoedgar@gmail.com> |
7 | | -Homepage: |
8 | | -Stability: Experimental |
9 | | -Synopsis: 3D Microstructure Generator |
10 | | -Description: |
11 | | - Creates virtual microstructure in 3 dimesions. |
12 | | -Cabal-version: >= 1.8 |
13 | | -Build-type: Simple |
14 | | -Category: Data, Math |
| 1 | +name: VirMat |
| 2 | +version: 0.4.1 |
| 3 | +license: GPL-3 |
| 4 | +license-file: LICENSE |
| 5 | +author: Edgar Gomes de Araujo |
| 6 | +maintainer: Edgar Gomes de Araujo <talktoedgar@gmail.com> |
| 7 | +homepage: |
| 8 | +stability: Experimental |
| 9 | +synopsis: 3D Microstructure Generator |
| 10 | +description: Creates virtual microstructure in 3 dimesions. |
| 11 | +cabal-version: >=1.8 |
| 12 | +build-type: Simple |
| 13 | +category: Data, Math |
15 | 14 |
|
16 | | -Flag generator |
17 | | - Description: Build the exectable using command line. |
18 | | - Default: True |
| 15 | +flag generator |
| 16 | + description: Build the exectable using command line. |
| 17 | + default: True |
19 | 18 |
|
20 | | -Executable virmatgen |
21 | | - hs-source-dirs: src |
22 | | - main-is: Main.hs |
23 | | - ghc-options: -Wall |
24 | | - -O3 |
25 | | - -threaded |
26 | | - -rtsopts |
27 | | - -auto-all |
28 | | - -caf-all |
| 19 | +executable virmatgen |
| 20 | + hs-source-dirs: src |
| 21 | + main-is: Main.hs |
| 22 | + ghc-options: -Wall -O3 -threaded -rtsopts -auto-all -caf-all |
| 23 | + build-depends: |
| 24 | + base >=4 && <5 |
| 25 | + , containers >=0.5 |
| 26 | + , DeUni >=0.3 |
| 27 | + , hammer >=0.3 |
| 28 | + , linear-vect >=0.2 |
| 29 | + , mersenne-random-pure64 >=0.2 |
| 30 | + , mtl >=2.1 |
| 31 | + , optparse-applicative >=0.7 |
| 32 | + , random >=1.2 |
| 33 | + , random-fu >=0.2 |
| 34 | + , sledge >=0.3 |
| 35 | + , SubZero >=0.1 |
| 36 | + , transformers >=0.3 |
| 37 | + , unordered-containers >=0.2 |
| 38 | + , vector >=0.10 |
| 39 | + , VirMat |
29 | 40 |
|
30 | | - Build-Depends: VirMat |
31 | | - , base == 4.* |
32 | | - , hammer >= 0.3 |
33 | | - , sledge >= 0.3 |
34 | | - , DeUni >= 0.3 |
35 | | - , containers >= 0.5 |
36 | | - , unordered-containers >= 0.2 |
37 | | - , vector >= 0.10 |
38 | | - , SubZero >= 0.1 |
39 | | - , mersenne-random-pure64 >= 0.2 |
40 | | - , random-source >= 0.3 |
41 | | - , random-fu >= 0.2 |
42 | | - , transformers >= 0.3 |
43 | | - , mtl >= 2.1 |
44 | | - , optparse-applicative >= 0.7 |
45 | | - if flag(generator) |
46 | | - Buildable: True |
47 | | - else |
48 | | - Buildable: False |
| 41 | + if flag(generator) |
| 42 | + buildable: True |
49 | 43 |
|
50 | | -library |
51 | | - ghc-options: -Wall |
52 | | - -fwarn-tabs |
53 | | - -funbox-strict-fields |
54 | | - -O2 |
55 | | - hs-source-dirs: src |
56 | | - Build-Depends: base == 4.* |
57 | | - , hammer >= 0.3 |
58 | | - , sledge >= 0.3 |
59 | | - , DeUni >= 0.3 |
60 | | - , containers >= 0.5 |
61 | | - , unordered-containers >= 0.2 |
62 | | - , vector >= 0.10 |
63 | | - , SubZero >= 0.1 |
64 | | - , mersenne-random-pure64 >= 0.2 |
65 | | - , random-source >= 0.3 |
66 | | - , random-fu >= 0.2 |
67 | | - , transformers >= 0.3 |
68 | | - , mtl >= 2.1 |
69 | | - , linear-vect >= 0.2 |
70 | | - |
71 | | - Exposed-modules: VirMat.Run2D |
72 | | - VirMat.Run3D |
73 | | - VirMat.Types |
74 | | - |
75 | | - VirMat.Core.Packer |
76 | | - VirMat.Core.Sampling |
77 | | - VirMat.Core.VoronoiMicro |
78 | | - VirMat.Core.FlexMicro |
| 44 | + else |
| 45 | + buildable: False |
79 | 46 |
|
80 | | - VirMat.Distributions.GrainSize.GrainDistributionGenerator |
81 | | - VirMat.Distributions.GrainSize.GrainQuery |
82 | | - VirMat.Distributions.Texture.ODFSampling |
83 | | - |
84 | | - VirMat.IO.Export.ANG.RasterEngine |
85 | | - VirMat.IO.Export.Types |
86 | | - |
87 | | - VirMat.IO.Import.Types |
| 47 | +library |
| 48 | + ghc-options: -Wall -fwarn-tabs -funbox-strict-fields -O2 |
| 49 | + hs-source-dirs: src |
| 50 | + build-depends: |
| 51 | + base >=4 && <5 |
| 52 | + , containers >=0.5 |
| 53 | + , DeUni >=0.3 |
| 54 | + , hammer >=0.3 |
| 55 | + , linear-vect >=0.2 |
| 56 | + , mersenne-random-pure64 >=0.2 |
| 57 | + , mtl >=2.1 |
| 58 | + , random >=1.2 |
| 59 | + , random-fu >=0.2 |
| 60 | + , sledge >=0.3 |
| 61 | + , SubZero >=0.1 |
| 62 | + , transformers >=0.3 |
| 63 | + , unordered-containers >=0.2 |
| 64 | + , vector >=0.10 |
88 | 65 |
|
89 | | - VirMat.PhaseTrans |
| 66 | + exposed-modules: |
| 67 | + VirMat.Core.FlexMicro |
| 68 | + VirMat.Core.Packer |
| 69 | + VirMat.Core.Sampling |
| 70 | + VirMat.Core.VoronoiMicro |
| 71 | + VirMat.Distributions.GrainSize.GrainDistributionGenerator |
| 72 | + VirMat.Distributions.GrainSize.GrainQuery |
| 73 | + VirMat.Distributions.Texture.ODFSampling |
| 74 | + VirMat.IO.Export.ANG.RasterEngine |
| 75 | + VirMat.IO.Export.Types |
| 76 | + VirMat.IO.Import.Types |
| 77 | + VirMat.PhaseTrans |
| 78 | + VirMat.Run2D |
| 79 | + VirMat.Run3D |
| 80 | + VirMat.Types |
0 commit comments