Low-level bindings to the SuperCollider synthesis engine library.
DEPRECATED. This library is looking for a new maintainer.
This library provides low level bindings to the SuperCollider synthesis engine library (libscsynth
). If you are looking for a higher level Haskell interface, please use the hsc3-process package (http://hackage.haskell.org/package/hsc3-process).
ChangeLog: https://github.com/kaoskorobase/bindings-sc3/blob/master/ChangeLog.md
In order to use this package, you need to build the dynamic library version of SuperCollider supercollider.sourceforge.net by passing -DLIBSCSYNTH=ON
to cmake
and put it in a location where it can be found by the linker (e.g. usr
local/lib
on Unix systems, alternatively use the --extra-lib-dirs
flag of cabal configure
).
The required SuperCollider version is 3.5.
bindings-sc3 is a Haskell library that provides low-level bindings to the SuperCollider synthesis engine library libscsynth
.
Installation
Currently, bindings-sc3 requires SuperCollider to be built from source (at least revision 12838871d99ff72cfa047aa07e1a53ba2b1c8f5b
). See the SuperCollider development page for information on how to get the sources from the git repository and build SuperCollider (you need to pass -DLIBSCSYNTH=ON
to cmake
in order to build the shared library).
MacOS X
Assuming the environment variable SC
points to the SuperCollider source tree, the bindings can then be installed as follows:
DYLD_LIBRARY_PATH=$SC/server/scsynth \
cabal install --extra-include-dirs=$SC/include/common \
--extra-include-dirs=$SC/include/plugin_interface \
--extra-include-dirs=$SC/include/server \
--extra-lib-dirs=$SC/server/scsynth/
Reporting bugs
Please report bugs in our issue tracker.
Development
bindings-sc3's source code is hosted at github. You can check out a copy of the repository with the following command:
git://github.com/kaoskorobase/bindings-sc3.git