-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfdk-aac-enc.cabal
67 lines (66 loc) · 2.5 KB
/
fdk-aac-enc.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
name: fdk-aac-enc
version: 0.3.0.0
synopsis: Wrapper around the Frauenhofer ISO-14496-3 AAC Encoder
description: Please see README.md
homepage: https://github.com/lindenbaum/fdk-aac-enc#readme
license: BSD3
license-file: LICENSE
author: Sven Heyll
maintainer: [email protected]
copyright: 2016 Sven Heyll, Lindenbaum GmbH
category: Sound
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Audio.FdkAac
, Audio.AacOutputStream
default-language: Haskell2010
ghc-options: -O2 -Wall -funbox-strict-fields -fno-warn-unused-do-bind -fprint-explicit-kinds
default-extensions: BangPatterns
, ConstraintKinds
, CPP
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, DuplicateRecordFields
, FlexibleInstances
, FlexibleContexts
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, KindSignatures
, MultiParamTypeClasses
, NamedFieldPuns
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeApplications
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
, UnicodeSyntax
build-depends: base >= 4.9 && < 5
, bytestring
, containers
, inline-c
, isobmff-builder >= 0.11.0.0 && < 0.12
, random
, spool
, time
, text
, vector
c-sources: src/Audio/FdkAac.c
-- These flags will be passed to the C compiler
cc-options: -std=c99 -Wall -O2
-- Libraries to link the code with.
extra-libraries: m
PkgConfig-Depends: fdk-aac >= 0.1.4