-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpufreq.cabal
65 lines (61 loc) · 2.58 KB
/
cpufreq.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
name: cpufreq
author: Remy Goldschmidt
version: 0.0.1
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: System
copyright: 2017 Remy Goldschmidt <taktoa@gmail.com>
maintainer: taktoa@gmail.com
homepage: https://github.com/taktoa/cpufreq
bug-reports: https://github.com/taktoa/cpufreq/issues
license: MIT
license-file: LICENSE.md
extra-source-files: README.md
synopsis: FFI bindings to libcpufreq from cpufrequtils.
description: FFI bindings to libcpufreq from cpufrequtils.
source-repository head
type: git
location: https://github.com/taktoa/cpufreq.git
library
build-depends: base == 4.*
, transformers == 0.5.*
, mtl == 2.2.*
, bytestring == 0.10.*
, text == 1.2.*
, lens == 4.14.*
, unix == 2.7.*
, process == 1.4.*
, data-default == 0.7.*
, semigroups == 0.18.*
, exceptions == 0.8.*
, containers == 0.5.*
, pipes == 4.1.*
, ansi-wl-pprint == 0.6.*
, vector == 0.11.*
default-language: Haskell2010
exposed-modules: System.CPUFreq
System.CPUFreq.Lens
System.CPUFreq.Internal
extra-libraries: cpufreq
ghc-options: -Wall -O2 -threaded -g
-fno-warn-type-defaults
-fno-warn-unused-do-bind
-fno-warn-unused-imports
ghc-prof-options: -auto-all -prof
hs-source-dirs: src
build-tools: c2hs
executable cpufreq
build-depends: base == 4.*
, cpufreq
, ansi-wl-pprint
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -g
main-is: src/Main.hs
test-suite tests
build-depends: base == 4.*
, cpufreq
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -fhpc -Wall -Werror
main-is: src/Tests.hs