packages feed

hsc3-process-0.10.0: hsc3-process.cabal

Name:               hsc3-process
Version:            0.10.0
Synopsis:           Create and control scsynth processes
Description:
    This library allows to create and control scsynth processes.
    .
    ChangeLog: <https://github.com/kaoskorobase/hsc3-process/blob/master/ChangeLog.md>
License:            GPL
License-File:       LICENSE
Category:           Sound
Copyright:          Copyright (c) Stefan Kersten and others 2008-2013
Author:             Stefan Kersten, Rohan Drape
Maintainer:         kaoskorobase@gmail.com
Homepage:           https://github.com/kaoskorobase/hsc3-process
Tested-With:        GHC == 7.4
Build-Type:         Simple
Cabal-Version:      >= 1.8

Flag build-examples
    Description:    Build example programs
    Default:        False

Library
  Exposed-Modules:  Sound.SC3.Server.Process
                    Sound.SC3.Server.Process.CommandLine
                    Sound.SC3.Server.Process.Make
                    Sound.SC3.Server.Process.Options

  Build-Depends:    base >= 3 && < 5
                  , bytestring >= 0.8
                  , containers >= 0.2
                  , data-default >= 0.5
                  , directory
                  , filepath
                  , hosc >= 0.14
                  , hsc3 >= 0.14
                  , process >= 1.0
                  , time
                  , time-compat
                  , transformers >= 0.2

  Ghc-Options:      -Wall
 
Source-Repository head
  Type:             git
  Location:         git://github.com/kaoskorobase/hsc3-process.git

Executable hsc3-sine
    Main-Is: sine.hs
    Hs-Source-Dirs: examples
    if flag(build-examples)
        Buildable: True
    else
        Buildable: False
    Build-Depends:
        base >= 4.3 && < 5
      , data-default >= 0.5
      , hosc >= 0.14
      , hsc3 >= 0.14
      , hsc3-process >= 0.10
    Ghc-Options:
        -Wall -rtsopts -threaded

Executable hsc3-nrt
    Main-Is: nrt.hs
    Hs-Source-Dirs: examples
    if flag(build-examples)
        Buildable: True
    else
        Buildable: False
    Build-Depends:
        base >= 4.3 && < 5
      , data-default >= 0.5
      , hosc >= 0.14
      , hsc3 >= 0.14
      , hsc3-process >= 0.10
    Ghc-Options:
        -Wall -rtsopts -threaded