packages feed

libvorbis-0.1.0.1: libvorbis.cabal

name:                libvorbis
version:             0.1.0.1
synopsis:            Haskell binding for libvorbis, for decoding Ogg Vorbis audio files
description:         This package gives you a simple high-level API for decoding Ogg Vorbis
                     files or streams, and isn't currently intended to be comprehensive.
                     See the HOgg package in case that's more what you want.
                     .
                     Take a look at the tests/ directory for a minimalistic command-line player.
homepage:            https://github.com/the-real-blackh/libvorbis
license:             BSD3
license-file:        LICENSE
author:              Stephen Blackheath
maintainer:          http://blacksapphire.com/antispam/
-- copyright:           
category:            Codec
build-type:          Simple
cabal-version:       >=1.8
extra-source-files:
    tests/play.hs
    libvorbis-1.3.3/lib/lookup.h
    libvorbis-1.3.3/lib/misc.h
    libvorbis-1.3.3/lib/window.h
    libvorbis-1.3.3/lib/registry.h
    libvorbis-1.3.3/lib/masking.h
    libvorbis-1.3.3/lib/codec_internal.h
    libvorbis-1.3.3/lib/lsp.h
    libvorbis-1.3.3/lib/highlevel.h
    libvorbis-1.3.3/lib/smallft.h
    libvorbis-1.3.3/lib/bitrate.h
    libvorbis-1.3.3/lib/envelope.h
    libvorbis-1.3.3/lib/books/coupled/res_books_51.h
    libvorbis-1.3.3/lib/books/coupled/res_books_stereo.h
    libvorbis-1.3.3/lib/books/uncoupled/res_books_uncoupled.h
    libvorbis-1.3.3/lib/books/floor/floor_books.h
    libvorbis-1.3.3/lib/backends.h
    libvorbis-1.3.3/lib/scales.h
    libvorbis-1.3.3/lib/modes/psych_16.h
    libvorbis-1.3.3/lib/modes/setup_11.h
    libvorbis-1.3.3/lib/modes/setup_X.h
    libvorbis-1.3.3/lib/modes/residue_16.h
    libvorbis-1.3.3/lib/modes/residue_44u.h
    libvorbis-1.3.3/lib/modes/psych_11.h
    libvorbis-1.3.3/lib/modes/psych_8.h
    libvorbis-1.3.3/lib/modes/residue_44.h
    libvorbis-1.3.3/lib/modes/psych_44.h
    libvorbis-1.3.3/lib/modes/floor_all.h
    libvorbis-1.3.3/lib/modes/residue_44p51.h
    libvorbis-1.3.3/lib/modes/residue_8.h
    libvorbis-1.3.3/lib/modes/setup_44.h
    libvorbis-1.3.3/lib/modes/setup_16.h
    libvorbis-1.3.3/lib/modes/setup_44u.h
    libvorbis-1.3.3/lib/modes/setup_32.h
    libvorbis-1.3.3/lib/modes/setup_22.h
    libvorbis-1.3.3/lib/modes/setup_8.h
    libvorbis-1.3.3/lib/modes/setup_44p51.h
    libvorbis-1.3.3/lib/psy.h
    libvorbis-1.3.3/lib/lookup_data.h
    libvorbis-1.3.3/lib/mdct.h
    libvorbis-1.3.3/lib/os.h
    libvorbis-1.3.3/lib/lpc.h
    libvorbis-1.3.3/lib/codebook.h
    libvorbis-1.3.3/include/vorbis/codec.h
    libvorbis-1.3.3/include/vorbis/vorbisfile.h
    libvorbis-1.3.3/include/vorbis/vorbisenc.h
    libogg-1.3.1/include/ogg/config_types.h
    libogg-1.3.1/include/ogg/ogg.h
    libogg-1.3.1/include/ogg/os_types.h

source-repository head
  type:     git
  location: https://github.com/the-real-blackh/libvorbis

library
  exposed-modules:     Codec.Audio.Vorbis.File
  -- other-modules:       
  build-depends:       base >= 4.5.0.0 && < 4.9.0.0,
                       bytestring >= 0.10.0.0,
                       cpu >= 0.1.1
  include-dirs:        libogg-1.3.1/include, libvorbis-1.3.3/include, libvorbis-1.3.3/lib
  ghc-options:         -Wall
  c-sources:
    Codec/Audio/Vorbis/File_helper.c
    libogg-1.3.1/src/framing.c
    libogg-1.3.1/src/bitwise.c
    libvorbis-1.3.3/lib/vorbisfile.c
    libvorbis-1.3.3/lib/codebook.c
    libvorbis-1.3.3/lib/sharedbook.c
    libvorbis-1.3.3/lib/lookup.c
    libvorbis-1.3.3/lib/floor0.c
    libvorbis-1.3.3/lib/floor1.c
    libvorbis-1.3.3/lib/lsp.c
    libvorbis-1.3.3/lib/mdct.c
    libvorbis-1.3.3/lib/envelope.c
    libvorbis-1.3.3/lib/bitrate.c
    libvorbis-1.3.3/lib/lpc.c
    libvorbis-1.3.3/lib/registry.c
    libvorbis-1.3.3/lib/window.c
    libvorbis-1.3.3/lib/info.c
    libvorbis-1.3.3/lib/smallft.c
    libvorbis-1.3.3/lib/psy.c
    libvorbis-1.3.3/lib/analysis.c
    libvorbis-1.3.3/lib/res0.c
    libvorbis-1.3.3/lib/mapping0.c
    libvorbis-1.3.3/lib/block.c
    libvorbis-1.3.3/lib/synthesis.c