packages feed

hosc-0.14: hosc.cabal

Name:              hosc
Version:           0.14
Synopsis:          Haskell Open Sound Control
Description:       @hosc@ implements a subset of the /Open Sound Control/
                   byte protocol, <http://opensoundcontrol.org/>.
                   .
                   "Sound.OSC.Core" implements the actual protocol.
                   .
                   "Sound.OSC.Transport.FD" implements a
                   /file descriptor/ based transport layer for @UDP@
                   and @TCP@.
                   .
                   "Sound.OSC.Transport.Monad" implements a
                   monadic interface to the @FD@ transport layer.
                   .
                   Composite modules are at "Sound.OSC" and "Sound.OSC.FD".
License:           GPL
Category:          Sound
Copyright:         (c) Rohan Drape, Stefan Kersten and others, 2006-2013
Author:            Rohan Drape, Stefan Kersten
Maintainer:        rd@slavepianos.org
Stability:         Experimental
Homepage:          http://rd.slavepianos.org/?t=hosc
Tested-With:       GHC == 7.6.1
Build-Type:        Simple
Cabal-Version:     >= 1.8
Data-Files:        README

Library
  Build-Depends:   base == 4.*,
                   binary >= 0.6,
                   blaze-builder >= 0.3,
                   bytestring,
                   data-binary-ieee754,
                   network >= 2.3,
                   time,
                   transformers
  GHC-Options:     -Wall -fwarn-tabs
  Exposed-modules: Sound.OSC
                   Sound.OSC.Class
                   Sound.OSC.Coding
                   Sound.OSC.Coding.Byte
                   Sound.OSC.Coding.Cast
                   Sound.OSC.Coding.Decode.Base
                   Sound.OSC.Coding.Decode.Binary
                   Sound.OSC.Coding.Encode.Base
                   Sound.OSC.Coding.Encode.Builder
                   Sound.OSC.Core
                   Sound.OSC.Datum
                   Sound.OSC.FD
                   Sound.OSC.Normalise
                   Sound.OSC.Time
                   Sound.OSC.Transport.FD
                   Sound.OSC.Transport.FD.TCP
                   Sound.OSC.Transport.FD.UDP
                   Sound.OSC.Transport.Monad
                   Sound.OSC.Type
                   Sound.OSC.Wait

Source-Repository  head
  Type:            darcs
  Location:        http://rd.slavepianos.org/sw/hosc/

Benchmark hosc-benchmark
  Type: exitcode-stdio-1.0
  Hs-Source-Dirs: benchmarks
  Main-Is: benchmark.hs
  Other-Modules:
      Sound.OSC.NFData
  Build-Depends:
      base == 4.*
    , hosc == 0.14.*
    , bytestring
    , criterion
    , deepseq
  GHC-Options:      -Wall -fwarn-tabs -rtsopts -fno-warn-orphans
  GHC-Prof-Options: -Wall -fwarn-tabs -rtsopts -auto-all

Test-Suite hosc-test
  Type: exitcode-stdio-1.0
  Hs-Source-Dirs: tests
  Main-Is: test.hs
  Other-Modules:
      Sound.OSC.Arbitrary
  Build-Depends:
      base == 4.*
    , bytestring >= 0.10
    , hosc == 0.14.*
    , QuickCheck >= 2
    , test-framework >= 0.2
    , test-framework-quickcheck2 >= 0.2
  GHC-Options:      -Wall -fwarn-tabs -rtsopts -fno-warn-orphans
  GHC-Prof-Options: -Wall -fwarn-tabs -rtsopts -auto-all